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

Unified Diff: content/test/browser_test.h

Issue 8587009: Add OVERRIDE to content/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 9 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/shell/shell_browser_main.h ('k') | content/test/mock_render_process.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/browser_test.h
diff --git a/content/test/browser_test.h b/content/test/browser_test.h
index 50a7f27d5e252a1b03c0c4a1068937bae7eb0352..8df4173fe6827b07002d27d412be0cd16889783c 100644
--- a/content/test/browser_test.h
+++ b/content/test/browser_test.h
@@ -21,15 +21,17 @@
typedef ContentBrowserTest InProcessBrowserTest;
#endif
+#include "base/compiler_specific.h"
+
#define IN_PROC_BROWSER_TEST_(test_case_name, test_name, parent_class,\
parent_id)\
class GTEST_TEST_CLASS_NAME_(test_case_name, test_name) : public parent_class {\
public:\
GTEST_TEST_CLASS_NAME_(test_case_name, test_name)() {}\
protected:\
- virtual void RunTestOnMainThread();\
+ virtual void RunTestOnMainThread() OVERRIDE;\
private:\
- virtual void TestBody() {}\
+ virtual void TestBody() OVERRIDE {}\
static ::testing::TestInfo* const test_info_;\
GTEST_DISALLOW_COPY_AND_ASSIGN_(\
GTEST_TEST_CLASS_NAME_(test_case_name, test_name));\
« no previous file with comments | « content/shell/shell_browser_main.h ('k') | content/test/mock_render_process.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698