
The Google C++ style guide states: Explicitly annotate overrides of virtual functions or virtual destructors with an override or (less frequently) final specifier. Older (pre-C++11) code will use the virtual keyword as an inferior alternative annotation. For clarity, use exactly one of override, final, or virtual when declaring an override. To better conform to these guidelines, the following constructs have been rewritten: - if a base class has a virtual destructor, then: virtual ~Foo(); -> ~Foo() override; - virtual void Foo() override; -> void Foo() override; - virtual void Foo() override final; -> void Foo() final; This patch was automatically generated. The clang plugin can generate fixit hints, which are suggested edits when it is 100% sure it knows how to fix a problem. The hints from the clang plugin were applied to the source tree using the tool in https://codereview.chromium.org/598073004. Several formatting edits by clang-format were manually reverted, due to mangling of some of the more complicate IPC macros. BUG=417463 Review URL: https://codereview.chromium.org/817403002 Cr-Commit-Position: refs/heads/master@{#309480}
30 lines
661 B
C++
30 lines
661 B
C++
// Copyright 2014 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef SQL_TEST_SQL_TEST_SUITE_H_
|
|
#define SQL_TEST_SQL_TEST_SUITE_H_
|
|
|
|
#include "base/macros.h"
|
|
#include "base/test/test_suite.h"
|
|
|
|
namespace sql {
|
|
|
|
class SQLTestSuite : public base::TestSuite {
|
|
public:
|
|
SQLTestSuite(int argc, char** argv);
|
|
~SQLTestSuite() override;
|
|
|
|
protected:
|
|
// Overridden from base::TestSuite:
|
|
void Initialize() override;
|
|
void Shutdown() override;
|
|
|
|
private:
|
|
DISALLOW_COPY_AND_ASSIGN(SQLTestSuite);
|
|
};
|
|
|
|
} // namespace sql
|
|
|
|
#endif // SQL_TEST_SQL_TEST_SUITE_H_
|