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

Side by Side Diff: extensions/shell/test/shell_test.h

Issue 622343002: replace OVERRIDE and FINAL with override and final in extensions/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 EXTENSIONS_SHELL_TEST_SHELL_TEST_H_ 5 #ifndef EXTENSIONS_SHELL_TEST_SHELL_TEST_H_
6 #define EXTENSIONS_SHELL_TEST_SHELL_TEST_H_ 6 #define EXTENSIONS_SHELL_TEST_SHELL_TEST_H_
7 7
8 #include "base/memory/scoped_ptr.h" 8 #include "base/memory/scoped_ptr.h"
9 #include "content/public/test/browser_test.h" 9 #include "content/public/test/browser_test.h"
10 #include "content/public/test/browser_test_base.h" 10 #include "content/public/test/browser_test_base.h"
(...skipping 10 matching lines...) Expand all
21 21
22 class ShellExtensionSystem; 22 class ShellExtensionSystem;
23 23
24 // Base class for app shell browser tests. 24 // Base class for app shell browser tests.
25 class AppShellTest : public content::BrowserTestBase { 25 class AppShellTest : public content::BrowserTestBase {
26 public: 26 public:
27 AppShellTest(); 27 AppShellTest();
28 virtual ~AppShellTest(); 28 virtual ~AppShellTest();
29 29
30 // content::BrowserTestBase implementation. 30 // content::BrowserTestBase implementation.
31 virtual void SetUp() OVERRIDE; 31 virtual void SetUp() override;
32 virtual void SetUpOnMainThread() OVERRIDE; 32 virtual void SetUpOnMainThread() override;
33 virtual void RunTestOnMainThreadLoop() OVERRIDE; 33 virtual void RunTestOnMainThreadLoop() override;
34 34
35 content::BrowserContext* browser_context() { return browser_context_; } 35 content::BrowserContext* browser_context() { return browser_context_; }
36 36
37 protected: 37 protected:
38 content::BrowserContext* browser_context_; 38 content::BrowserContext* browser_context_;
39 ShellExtensionSystem* extension_system_; 39 ShellExtensionSystem* extension_system_;
40 }; 40 };
41 41
42 } // namespace extensions 42 } // namespace extensions
43 43
44 #endif // EXTENSIONS_SHELL_TEST_SHELL_TEST_H_ 44 #endif // EXTENSIONS_SHELL_TEST_SHELL_TEST_H_
OLDNEW
« no previous file with comments | « extensions/shell/renderer/shell_extensions_renderer_client.h ('k') | extensions/shell/test/shell_test_launcher_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698