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

Side by Side Diff: chrome/browser/ui/extensions/extension_enable_flow.h

Issue 671653002: Standardize usage of virtual/override/final in chrome/browser/ui/ (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 CHROME_BROWSER_UI_EXTENSIONS_EXTENSION_ENABLE_FLOW_H_ 5 #ifndef CHROME_BROWSER_UI_EXTENSIONS_EXTENSION_ENABLE_FLOW_H_
6 #define CHROME_BROWSER_UI_EXTENSIONS_EXTENSION_ENABLE_FLOW_H_ 6 #define CHROME_BROWSER_UI_EXTENSIONS_EXTENSION_ENABLE_FLOW_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 25 matching lines...) Expand all
36 // shown to user. The extension is enabled when user acknowledges it or the 36 // shown to user. The extension is enabled when user acknowledges it or the
37 // flow is aborted when user declines it. 37 // flow is aborted when user declines it.
38 class ExtensionEnableFlow : public ExtensionInstallPrompt::Delegate, 38 class ExtensionEnableFlow : public ExtensionInstallPrompt::Delegate,
39 public content::PageNavigator, 39 public content::PageNavigator,
40 public content::NotificationObserver, 40 public content::NotificationObserver,
41 public extensions::ExtensionRegistryObserver { 41 public extensions::ExtensionRegistryObserver {
42 public: 42 public:
43 ExtensionEnableFlow(Profile* profile, 43 ExtensionEnableFlow(Profile* profile,
44 const std::string& extension_id, 44 const std::string& extension_id,
45 ExtensionEnableFlowDelegate* delegate); 45 ExtensionEnableFlowDelegate* delegate);
46 virtual ~ExtensionEnableFlow(); 46 ~ExtensionEnableFlow() override;
47 47
48 // Starts the flow and the logic continues on |delegate_| after enabling is 48 // Starts the flow and the logic continues on |delegate_| after enabling is
49 // finished or aborted. Note that |delegate_| could be called synchronously 49 // finished or aborted. Note that |delegate_| could be called synchronously
50 // before this call returns when there is no need to show UI to finish the 50 // before this call returns when there is no need to show UI to finish the
51 // enabling flow. Three variations of the flow are supported: 51 // enabling flow. Three variations of the flow are supported:
52 // - one with a parent WebContents 52 // - one with a parent WebContents
53 // - one with a native parent window 53 // - one with a native parent window
54 // - one with a callback for creating a parent window 54 // - one with a callback for creating a parent window
55 void StartForWebContents(content::WebContents* parent_contents); 55 void StartForWebContents(content::WebContents* parent_contents);
56 void StartForNativeWindow(gfx::NativeWindow parent_window); 56 void StartForNativeWindow(gfx::NativeWindow parent_window);
(...skipping 16 matching lines...) Expand all
73 void CheckPermissionAndMaybePromptUser(); 73 void CheckPermissionAndMaybePromptUser();
74 74
75 // Creates an ExtensionInstallPrompt in |prompt_|. 75 // Creates an ExtensionInstallPrompt in |prompt_|.
76 void CreatePrompt(); 76 void CreatePrompt();
77 77
78 // Starts/stops observing extension load notifications. 78 // Starts/stops observing extension load notifications.
79 void StartObserving(); 79 void StartObserving();
80 void StopObserving(); 80 void StopObserving();
81 81
82 // content::NotificationObserver overrides: 82 // content::NotificationObserver overrides:
83 virtual void Observe(int type, 83 void Observe(int type,
84 const content::NotificationSource& source, 84 const content::NotificationSource& source,
85 const content::NotificationDetails& details) override; 85 const content::NotificationDetails& details) override;
86 86
87 // extensions::ExtensionRegistryObserver overrides: 87 // extensions::ExtensionRegistryObserver overrides:
88 virtual void OnExtensionLoaded( 88 void OnExtensionLoaded(content::BrowserContext* browser_context,
89 content::BrowserContext* browser_context, 89 const extensions::Extension* extension) override;
90 const extensions::Extension* extension) override; 90 void OnExtensionUninstalled(content::BrowserContext* browser_context,
91 virtual void OnExtensionUninstalled( 91 const extensions::Extension* extension,
92 content::BrowserContext* browser_context, 92 extensions::UninstallReason reason) override;
93 const extensions::Extension* extension,
94 extensions::UninstallReason reason) override;
95 93
96 // ExtensionInstallPrompt::Delegate overrides: 94 // ExtensionInstallPrompt::Delegate overrides:
97 virtual void InstallUIProceed() override; 95 void InstallUIProceed() override;
98 virtual void InstallUIAbort(bool user_initiated) override; 96 void InstallUIAbort(bool user_initiated) override;
99 97
100 // content::PageNavigator overrides: 98 // content::PageNavigator overrides:
101 virtual content::WebContents* OpenURL( 99 content::WebContents* OpenURL(const content::OpenURLParams& params) override;
102 const content::OpenURLParams& params) override;
103 100
104 Profile* const profile_; 101 Profile* const profile_;
105 const std::string extension_id_; 102 const std::string extension_id_;
106 ExtensionEnableFlowDelegate* const delegate_; // Not owned. 103 ExtensionEnableFlowDelegate* const delegate_; // Not owned.
107 104
108 // Parent web contents for ExtensionInstallPrompt that may be created during 105 // Parent web contents for ExtensionInstallPrompt that may be created during
109 // the flow. Note this is mutually exclusive with |parent_window_| below. 106 // the flow. Note this is mutually exclusive with |parent_window_| below.
110 content::WebContents* parent_contents_; 107 content::WebContents* parent_contents_;
111 108
112 // Parent native window for ExtensionInstallPrompt. Note this is mutually 109 // Parent native window for ExtensionInstallPrompt. Note this is mutually
113 // exclusive with |parent_contents_| above. 110 // exclusive with |parent_contents_| above.
114 gfx::NativeWindow parent_window_; 111 gfx::NativeWindow parent_window_;
115 112
116 // Called to acquire a parent window for the prompt. This is used for clients 113 // Called to acquire a parent window for the prompt. This is used for clients
117 // who only want to create a window if it is required. 114 // who only want to create a window if it is required.
118 base::Callback<gfx::NativeWindow(void)> window_getter_; 115 base::Callback<gfx::NativeWindow(void)> window_getter_;
119 116
120 scoped_ptr<ExtensionInstallPrompt> prompt_; 117 scoped_ptr<ExtensionInstallPrompt> prompt_;
121 content::NotificationRegistrar registrar_; 118 content::NotificationRegistrar registrar_;
122 119
123 // Listen to extension load notification. 120 // Listen to extension load notification.
124 ScopedObserver<extensions::ExtensionRegistry, 121 ScopedObserver<extensions::ExtensionRegistry,
125 extensions::ExtensionRegistryObserver> 122 extensions::ExtensionRegistryObserver>
126 extension_registry_observer_; 123 extension_registry_observer_;
127 124
128 DISALLOW_COPY_AND_ASSIGN(ExtensionEnableFlow); 125 DISALLOW_COPY_AND_ASSIGN(ExtensionEnableFlow);
129 }; 126 };
130 127
131 #endif // CHROME_BROWSER_UI_EXTENSIONS_EXTENSION_ENABLE_FLOW_H_ 128 #endif // CHROME_BROWSER_UI_EXTENSIONS_EXTENSION_ENABLE_FLOW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698