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

Side by Side Diff: android_webview/lib/main/aw_main_delegate.h

Issue 623833003: replace OVERRIDE and FINAL with override and final in android_webview/ (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 (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_MAIN_AW_MAIN_DELEGATE_H_ 5 #ifndef ANDROID_WEBVIEW_LIB_MAIN_AW_MAIN_DELEGATE_H_
6 #define ANDROID_WEBVIEW_LIB_MAIN_AW_MAIN_DELEGATE_H_ 6 #define ANDROID_WEBVIEW_LIB_MAIN_AW_MAIN_DELEGATE_H_
7 7
8 #include "android_webview/browser/jni_dependency_factory.h" 8 #include "android_webview/browser/jni_dependency_factory.h"
9 #include "android_webview/common/aw_content_client.h" 9 #include "android_webview/common/aw_content_client.h"
10 #include "base/memory/ref_counted.h" 10 #include "base/memory/ref_counted.h"
(...skipping 12 matching lines...) Expand all
23 23
24 // Android WebView implementation of ContentMainDelegate. 24 // Android WebView implementation of ContentMainDelegate.
25 class AwMainDelegate : public content::ContentMainDelegate, 25 class AwMainDelegate : public content::ContentMainDelegate,
26 public JniDependencyFactory { 26 public JniDependencyFactory {
27 public: 27 public:
28 AwMainDelegate(); 28 AwMainDelegate();
29 virtual ~AwMainDelegate(); 29 virtual ~AwMainDelegate();
30 30
31 private: 31 private:
32 // content::ContentMainDelegate implementation: 32 // content::ContentMainDelegate implementation:
33 virtual bool BasicStartupComplete(int* exit_code) OVERRIDE; 33 virtual bool BasicStartupComplete(int* exit_code) override;
34 virtual void PreSandboxStartup() OVERRIDE; 34 virtual void PreSandboxStartup() override;
35 virtual void SandboxInitialized(const std::string& process_type) OVERRIDE; 35 virtual void SandboxInitialized(const std::string& process_type) override;
36 virtual int RunProcess( 36 virtual int RunProcess(
37 const std::string& process_type, 37 const std::string& process_type,
38 const content::MainFunctionParams& main_function_params) OVERRIDE; 38 const content::MainFunctionParams& main_function_params) override;
39 virtual void ProcessExiting(const std::string& process_type) OVERRIDE; 39 virtual void ProcessExiting(const std::string& process_type) override;
40 virtual content::ContentBrowserClient* CreateContentBrowserClient() OVERRIDE; 40 virtual content::ContentBrowserClient* CreateContentBrowserClient() override;
41 virtual content::ContentRendererClient* 41 virtual content::ContentRendererClient*
42 CreateContentRendererClient() OVERRIDE; 42 CreateContentRendererClient() override;
43 43
44 // JniDependencyFactory implementation. 44 // JniDependencyFactory implementation.
45 virtual scoped_refptr<AwQuotaManagerBridge> CreateAwQuotaManagerBridge( 45 virtual scoped_refptr<AwQuotaManagerBridge> CreateAwQuotaManagerBridge(
46 AwBrowserContext* browser_context) OVERRIDE; 46 AwBrowserContext* browser_context) override;
47 virtual content::WebContentsViewDelegate* CreateViewDelegate( 47 virtual content::WebContentsViewDelegate* CreateViewDelegate(
48 content::WebContents* web_contents) OVERRIDE; 48 content::WebContents* web_contents) override;
49 virtual AwWebPreferencesPopulater* CreateWebPreferencesPopulater() OVERRIDE; 49 virtual AwWebPreferencesPopulater* CreateWebPreferencesPopulater() override;
50 #if defined(VIDEO_HOLE) 50 #if defined(VIDEO_HOLE)
51 virtual content::ExternalVideoSurfaceContainer* 51 virtual content::ExternalVideoSurfaceContainer*
52 CreateExternalVideoSurfaceContainer( 52 CreateExternalVideoSurfaceContainer(
53 content::WebContents* web_contents) OVERRIDE; 53 content::WebContents* web_contents) override;
54 #endif 54 #endif
55 55
56 scoped_ptr<content::BrowserMainRunner> browser_runner_; 56 scoped_ptr<content::BrowserMainRunner> browser_runner_;
57 AwContentClient content_client_; 57 AwContentClient content_client_;
58 scoped_ptr<AwContentBrowserClient> content_browser_client_; 58 scoped_ptr<AwContentBrowserClient> content_browser_client_;
59 scoped_ptr<AwContentRendererClient> content_renderer_client_; 59 scoped_ptr<AwContentRendererClient> content_renderer_client_;
60 60
61 DISALLOW_COPY_AND_ASSIGN(AwMainDelegate); 61 DISALLOW_COPY_AND_ASSIGN(AwMainDelegate);
62 }; 62 };
63 63
64 } // namespace android_webview 64 } // namespace android_webview
65 65
66 #endif // ANDROID_WEBVIEW_LIB_MAIN_AW_MAIN_DELEGATE_H_ 66 #endif // ANDROID_WEBVIEW_LIB_MAIN_AW_MAIN_DELEGATE_H_
OLDNEW
« no previous file with comments | « android_webview/lib/aw_browser_dependency_factory_impl.h ('k') | android_webview/native/android_protocol_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698