Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(487)

Side by Side Diff: chrome/test/browser/browser_test_runner.h

Issue 179028: Revert "Fix a ton of compiler warnings." (Closed)
Patch Set: Created 11 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/test/automation/tab_proxy.h ('k') | chrome/test/render_view_test.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_TEST_BROWSER_BROWSER_TEST_RUNNER_ 5 #ifndef CHROME_TEST_BROWSER_BROWSER_TEST_RUNNER_
6 #define CHROME_TEST_BROWSER_BROWSER_TEST_RUNNER_ 6 #define CHROME_TEST_BROWSER_BROWSER_TEST_RUNNER_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 26 matching lines...) Expand all
37 // false if it failed. 37 // false if it failed.
38 virtual bool RunTest(const std::string& test_name) = 0; 38 virtual bool RunTest(const std::string& test_name) = 0;
39 39
40 private: 40 private:
41 DISALLOW_COPY_AND_ASSIGN(BrowserTestRunner); 41 DISALLOW_COPY_AND_ASSIGN(BrowserTestRunner);
42 }; 42 };
43 43
44 class BrowserTestRunnerFactory { 44 class BrowserTestRunnerFactory {
45 public: 45 public:
46 virtual BrowserTestRunner* CreateBrowserTestRunner() const = 0; 46 virtual BrowserTestRunner* CreateBrowserTestRunner() const = 0;
47 protected:
48 ~BrowserTestRunnerFactory() {}
49 }; 47 };
50 48
51 } // namespace 49 } // namespace
52 50
53 #endif // CHROME_TEST_BROWSER_BROWSER_TEST_RUNNER_ 51 #endif // CHROME_TEST_BROWSER_BROWSER_TEST_RUNNER_
OLDNEW
« no previous file with comments | « chrome/test/automation/tab_proxy.h ('k') | chrome/test/render_view_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698