Chromium Code Reviews| Index: ui/chromeos/run_all_unittests.cc |
| diff --git a/ui/keyboard/test/run_all_unittests.cc b/ui/chromeos/run_all_unittests.cc |
| similarity index 76% |
| copy from ui/keyboard/test/run_all_unittests.cc |
| copy to ui/chromeos/run_all_unittests.cc |
| index c81e199c1a15f50dcb5d0b3ee57ccb04a7ba5043..a677d66e846da4e96e85b07b8b198d865c889580 100644 |
| --- a/ui/keyboard/test/run_all_unittests.cc |
| +++ b/ui/chromeos/run_all_unittests.cc |
| @@ -15,9 +15,10 @@ |
| namespace { |
| -class KeyboardTestSuite : public base::TestSuite { |
| +class UIChromeOSTestSuite : public base::TestSuite { |
| public: |
| - KeyboardTestSuite(int argc, char** argv) : base::TestSuite(argc, argv) {} |
| + UIChromeOSTestSuite(int argc, char** argv) : base::TestSuite(argc, argv) {} |
| + ~UIChromeOSTestSuite() override {} |
|
tfarina
2014/11/19 17:32:18
why did you need to override the dtor?
|
| protected: |
| void Initialize() override { |
| @@ -36,16 +37,16 @@ class KeyboardTestSuite : public base::TestSuite { |
| } |
| private: |
| - DISALLOW_COPY_AND_ASSIGN(KeyboardTestSuite); |
| + DISALLOW_COPY_AND_ASSIGN(UIChromeOSTestSuite); |
| }; |
| } // namespace |
| int main(int argc, char** argv) { |
| - KeyboardTestSuite test_suite(argc, argv); |
| + UIChromeOSTestSuite test_suite(argc, argv); |
| return base::LaunchUnitTests( |
| argc, |
| argv, |
| - base::Bind(&KeyboardTestSuite::Run, base::Unretained(&test_suite))); |
| + base::Bind(&UIChromeOSTestSuite::Run, base::Unretained(&test_suite))); |
| } |