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

Side by Side Diff: extensions/browser/extensions_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_BROWSER_EXTENSIONS_TEST_H_ 5 #ifndef EXTENSIONS_BROWSER_EXTENSIONS_TEST_H_
6 #define EXTENSIONS_BROWSER_EXTENSIONS_TEST_H_ 6 #define EXTENSIONS_BROWSER_EXTENSIONS_TEST_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "base/macros.h" 9 #include "base/macros.h"
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
(...skipping 25 matching lines...) Expand all
36 // TestBrowserContext. 36 // TestBrowserContext.
37 content::BrowserContext* browser_context() { return browser_context_.get(); } 37 content::BrowserContext* browser_context() { return browser_context_.get(); }
38 38
39 // Returned as a TestExtensionsBrowserClient since most users need to call 39 // Returned as a TestExtensionsBrowserClient since most users need to call
40 // test-specific methods on it. 40 // test-specific methods on it.
41 TestExtensionsBrowserClient* extensions_browser_client() { 41 TestExtensionsBrowserClient* extensions_browser_client() {
42 return extensions_browser_client_.get(); 42 return extensions_browser_client_.get();
43 } 43 }
44 44
45 // testing::Test overrides: 45 // testing::Test overrides:
46 virtual void SetUp() OVERRIDE; 46 virtual void SetUp() override;
47 virtual void TearDown() OVERRIDE; 47 virtual void TearDown() override;
48 48
49 private: 49 private:
50 scoped_ptr<content::ContentClient> content_client_; 50 scoped_ptr<content::ContentClient> content_client_;
51 scoped_ptr<content::ContentBrowserClient> content_browser_client_; 51 scoped_ptr<content::ContentBrowserClient> content_browser_client_;
52 scoped_ptr<content::BrowserContext> browser_context_; 52 scoped_ptr<content::BrowserContext> browser_context_;
53 scoped_ptr<TestExtensionsBrowserClient> extensions_browser_client_; 53 scoped_ptr<TestExtensionsBrowserClient> extensions_browser_client_;
54 54
55 DISALLOW_COPY_AND_ASSIGN(ExtensionsTest); 55 DISALLOW_COPY_AND_ASSIGN(ExtensionsTest);
56 }; 56 };
57 57
58 } // namespace extensions 58 } // namespace extensions
59 59
60 #endif // EXTENSIONS_BROWSER_EXTENSIONS_TEST_H_ 60 #endif // EXTENSIONS_BROWSER_EXTENSIONS_TEST_H_
OLDNEW
« no previous file with comments | « extensions/browser/extension_web_contents_observer.h ('k') | extensions/browser/guest_view/app_view/app_view_guest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698