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

Side by Side Diff: android_webview/lib/aw_browser_dependency_factory_impl.h

Issue 893273003: Update {virtual,override,final} to follow C++11 style. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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 | « android_webview/common/aw_content_client.h ('k') | android_webview/lib/main/aw_main_delegate.h » ('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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 ANDROID_WEBVIEW_LIB_BROWSER_DELEGATE_IMPL_H_ 5 #ifndef ANDROID_WEBVIEW_LIB_BROWSER_DELEGATE_IMPL_H_
6 #define ANDROID_WEBVIEW_LIB_BROWSER_DELEGATE_IMPL_H_ 6 #define ANDROID_WEBVIEW_LIB_BROWSER_DELEGATE_IMPL_H_
7 7
8 #include "android_webview/native/aw_browser_dependency_factory.h" 8 #include "android_webview/native/aw_browser_dependency_factory.h"
9 9
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
11 #include "base/memory/scoped_ptr.h" 11 #include "base/memory/scoped_ptr.h"
12 12
13 namespace net { 13 namespace net {
14 class URLRequestContextGetter; 14 class URLRequestContextGetter;
15 } 15 }
16 16
17 namespace android_webview { 17 namespace android_webview {
18 18
19 class AwNetworkDelegate; 19 class AwNetworkDelegate;
20 class AwURLRequestJobFactory; 20 class AwURLRequestJobFactory;
21 21
22 class AwBrowserDependencyFactoryImpl : public AwBrowserDependencyFactory { 22 class AwBrowserDependencyFactoryImpl : public AwBrowserDependencyFactory {
23 public: 23 public:
24 AwBrowserDependencyFactoryImpl(); 24 AwBrowserDependencyFactoryImpl();
25 virtual ~AwBrowserDependencyFactoryImpl(); 25 ~AwBrowserDependencyFactoryImpl() override;
26 26
27 // Sets this class as the singleton instance. 27 // Sets this class as the singleton instance.
28 static void InstallInstance(); 28 static void InstallInstance();
29 29
30 // AwBrowserDependencyFactory 30 // AwBrowserDependencyFactory
31 virtual content::BrowserContext* GetBrowserContext() override; 31 content::BrowserContext* GetBrowserContext() override;
32 virtual content::WebContents* CreateWebContents() override; 32 content::WebContents* CreateWebContents() override;
33 33
34 private: 34 private:
35 DISALLOW_COPY_AND_ASSIGN(AwBrowserDependencyFactoryImpl); 35 DISALLOW_COPY_AND_ASSIGN(AwBrowserDependencyFactoryImpl);
36 }; 36 };
37 37
38 } // namespace android_webview 38 } // namespace android_webview
39 39
40 #endif // ANDROID_WEBVIEW_LIB_BROWSER_DELEGATE_IMPL_H_ 40 #endif // ANDROID_WEBVIEW_LIB_BROWSER_DELEGATE_IMPL_H_
OLDNEW
« no previous file with comments | « android_webview/common/aw_content_client.h ('k') | android_webview/lib/main/aw_main_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698