Add a minor text member to ui::MenuModel.
[chromium-blink-merge.git] / chrome / browser / shell_integration.h
blobf8559844e8d7df644f469c4825333001d33245c1
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
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_SHELL_INTEGRATION_H_
6 #define CHROME_BROWSER_SHELL_INTEGRATION_H_
8 #include <string>
10 #include "base/basictypes.h"
11 #include "base/files/file_path.h"
12 #include "base/memory/ref_counted.h"
13 #include "base/strings/string16.h"
14 #include "ui/gfx/image/image_family.h"
15 #include "url/gurl.h"
17 class CommandLine;
19 class ShellIntegration {
20 public:
21 // Sets Chrome as the default browser (only for the current user). Returns
22 // false if this operation fails.
23 static bool SetAsDefaultBrowser();
25 // Initiates an OS shell flow which (if followed by the user) should set
26 // Chrome as the default browser. Returns false if the flow cannot be
27 // initialized, if it is not supported (introduced for Windows 8) or if the
28 // user cancels the operation. This is a blocking call and requires a FILE
29 // thread. If Chrome is already default browser, no interactive dialog will be
30 // shown and this method returns true.
31 static bool SetAsDefaultBrowserInteractive();
33 // Sets Chrome as the default client application for the given protocol
34 // (only for the current user). Returns false if this operation fails.
35 static bool SetAsDefaultProtocolClient(const std::string& protocol);
37 // Initiates an OS shell flow which (if followed by the user) should set
38 // Chrome as the default handler for |protocol|. Returns false if the flow
39 // cannot be initialized, if it is not supported (introduced for Windows 8)
40 // or if the user cancels the operation. This is a blocking call and requires
41 // a FILE thread. If Chrome is already default for |protocol|, no interactive
42 // dialog will be shown and this method returns true.
43 static bool SetAsDefaultProtocolClientInteractive(
44 const std::string& protocol);
46 // In Windows 8 a browser can be made default-in-metro only in an interactive
47 // flow. We will distinguish between two types of permissions here to avoid
48 // forcing the user into UI interaction when this should not be done.
49 enum DefaultWebClientSetPermission {
50 SET_DEFAULT_NOT_ALLOWED,
51 SET_DEFAULT_UNATTENDED,
52 SET_DEFAULT_INTERACTIVE,
55 // Returns requirements for making the running browser the user's default.
56 static DefaultWebClientSetPermission CanSetAsDefaultBrowser();
58 // Returns requirements for making the running browser the user's default
59 // client application for specific protocols.
60 static DefaultWebClientSetPermission CanSetAsDefaultProtocolClient();
62 // Returns the path of the application to be launched given the protocol
63 // of the requested url. Returns an empty string on failure.
64 static std::string GetApplicationForProtocol(const GURL& url);
66 // On Linux, it may not be possible to determine or set the default browser
67 // on some desktop environments or configurations. So, we use this enum and
68 // not a plain bool.
69 enum DefaultWebClientState {
70 NOT_DEFAULT,
71 IS_DEFAULT,
72 UNKNOWN_DEFAULT,
73 NUM_DEFAULT_STATES
76 // Attempt to determine if this instance of Chrome is the default browser and
77 // return the appropriate state. (Defined as being the handler for HTTP/HTTPS
78 // protocols; we don't want to report "no" here if the user has simply chosen
79 // to open HTML files in a text editor and FTP links with an FTP client.)
80 static DefaultWebClientState GetDefaultBrowser();
82 // Returns true if Firefox is likely to be the default browser for the current
83 // user. This method is very fast so it can be invoked in the UI thread.
84 static bool IsFirefoxDefaultBrowser();
86 // Attempt to determine if this instance of Chrome is the default client
87 // application for the given protocol and return the appropriate state.
88 static DefaultWebClientState
89 IsDefaultProtocolClient(const std::string& protocol);
91 struct ShortcutInfo {
92 ShortcutInfo();
93 ~ShortcutInfo();
95 GURL url;
96 // If |extension_id| is non-empty, this is short cut is to an extension-app
97 // and the launch url will be detected at start-up. In this case, |url|
98 // is still used to generate the app id (windows app id, not chrome app id).
99 std::string extension_id;
100 bool is_platform_app;
101 string16 title;
102 string16 description;
103 base::FilePath extension_path;
104 gfx::ImageFamily favicon;
105 base::FilePath profile_path;
106 std::string profile_name;
109 // Info about which locations to create app shortcuts in.
110 struct ShortcutLocations {
111 ShortcutLocations();
113 bool on_desktop;
114 bool in_applications_menu;
115 string16 applications_menu_subdir;
117 // For Windows, this refers to quick launch bar prior to Win7. In Win7,
118 // this means "pin to taskbar". For Mac/Linux, this could be used for
119 // Mac dock or the gnome/kde application launcher. However, those are not
120 // implemented yet.
121 bool in_quick_launch_bar;
123 // For Linux, this refers to a shortcut which the system knows about (for
124 // the purpose of identifying windows and giving them the correct
125 // title/icon), but which does not show up in menus or search results.
126 // Ignored if in_applications_menu == true.
127 bool hidden;
130 // Data that needs to be passed between the app launcher stub and Chrome.
131 struct AppModeInfo {
133 static void SetAppModeInfo(const AppModeInfo* info);
134 static const AppModeInfo* AppModeInfo();
136 // Is the current instance of Chrome running in App mode.
137 bool IsRunningInAppMode();
139 // Set up command line arguments for launching a URL or an app.
140 // The new command line reuses the current process's user data directory (and
141 // login profile, for ChromeOS).
142 // If |extension_app_id| is non-empty, the arguments use kAppId=<id>.
143 // Otherwise, kApp=<url> is used.
144 static CommandLine CommandLineArgsForLauncher(
145 const GURL& url,
146 const std::string& extension_app_id,
147 const base::FilePath& profile_path);
149 #if defined(OS_WIN)
150 // Generates an application user model ID (AppUserModelId) for a given app
151 // name and profile path. The returned app id is in the format of
152 // "|app_name|[.<profile_id>]". "profile_id" is appended when user override
153 // the default value.
154 // Note: If the app has an installation specific suffix (e.g. on user-level
155 // Chrome installs), |app_name| should already be suffixed, this method will
156 // then further suffix it with the profile id as described above.
157 static string16 GetAppModelIdForProfile(const string16& app_name,
158 const base::FilePath& profile_path);
160 // Generates an application user model ID (AppUserModelId) for Chromium by
161 // calling GetAppModelIdForProfile() with ShellUtil::GetAppId() as app_name.
162 static string16 GetChromiumModelIdForProfile(
163 const base::FilePath& profile_path);
165 // Get the AppUserModelId for the App List, for the profile in |profile_path|.
166 static string16 GetAppListAppModelIdForProfile(
167 const base::FilePath& profile_path);
169 // Migrates existing chrome shortcuts by tagging them with correct app id.
170 // see http://crbug.com/28104
171 static void MigrateChromiumShortcuts();
173 // Migrates all shortcuts in |path| which point to |chrome_exe| such that they
174 // have the appropriate AppUserModelId. Also makes sure those shortcuts have
175 // the dual_mode property set if such is requested by |check_dual_mode|.
176 // Returns the number of shortcuts migrated.
177 // This method should not be called prior to Windows 7.
178 // This method is only public for the sake of tests and shouldn't be called
179 // externally otherwise.
180 static int MigrateShortcutsInPathInternal(const base::FilePath& chrome_exe,
181 const base::FilePath& path,
182 bool check_dual_mode);
184 // Returns the path to the Start Menu shortcut for the given Chrome.
185 static base::FilePath GetStartMenuShortcut(const base::FilePath& chrome_exe);
186 #endif // defined(OS_WIN)
188 // The current default web client application UI state. This is used when
189 // querying if Chrome is the default browser or the default handler
190 // application for a url protocol, and communicates the state and result of
191 // a request.
192 enum DefaultWebClientUIState {
193 STATE_PROCESSING,
194 STATE_NOT_DEFAULT,
195 STATE_IS_DEFAULT,
196 STATE_UNKNOWN
199 class DefaultWebClientObserver {
200 public:
201 virtual ~DefaultWebClientObserver() {}
202 // Updates the UI state to reflect the current default browser state.
203 virtual void SetDefaultWebClientUIState(DefaultWebClientUIState state) = 0;
204 // Called to notify the UI of the immediate result of invoking
205 // SetAsDefault.
206 virtual void OnSetAsDefaultConcluded(bool succeeded) {}
207 // Observer classes that return true to OwnedByWorker are automatically
208 // freed by the worker when they are no longer needed. False by default.
209 virtual bool IsOwnedByWorker();
210 // An observer can permit or decline set-as-default operation if it
211 // requires triggering user interaction. By default not allowed.
212 virtual bool IsInteractiveSetDefaultPermitted();
215 // Helper objects that handle checking if Chrome is the default browser
216 // or application for a url protocol on Windows and Linux, and also setting
217 // it as the default. These operations are performed asynchronously on the
218 // file thread since registry access (on Windows) or the preference database
219 // (on Linux) are involved and this can be slow.
220 class DefaultWebClientWorker
221 : public base::RefCountedThreadSafe<DefaultWebClientWorker> {
222 public:
223 explicit DefaultWebClientWorker(DefaultWebClientObserver* observer);
225 // Checks to see if Chrome is the default web client application. The result
226 // will be passed back to the observer via the SetDefaultWebClientUIState
227 // function. If there is no observer, this function does not do anything.
228 void StartCheckIsDefault();
230 // Sets Chrome as the default web client application. If there is an
231 // observer, once the operation has completed the new default will be
232 // queried and the current status reported via SetDefaultWebClientUIState.
233 void StartSetAsDefault();
235 // Called to notify the worker that the view is gone.
236 void ObserverDestroyed();
238 protected:
239 friend class base::RefCountedThreadSafe<DefaultWebClientWorker>;
241 virtual ~DefaultWebClientWorker() {}
243 private:
244 // Function that performs the check.
245 virtual DefaultWebClientState CheckIsDefault() = 0;
247 // Function that sets Chrome as the default web client. Returns false if
248 // the operation fails or has been cancelled by the user.
249 virtual bool SetAsDefault(bool interactive_permitted) = 0;
251 // Function that handles performing the check on the file thread. This
252 // function is posted as a task onto the file thread, where it performs
253 // the check. When the check has finished the CompleteCheckIsDefault
254 // function is posted to the UI thread, where the result is sent back to
255 // the observer.
256 void ExecuteCheckIsDefault();
258 // Function that handles setting Chrome as the default web client on the
259 // file thread. This function is posted as a task onto the file thread.
260 // Once it is finished the CompleteSetAsDefault function is posted to the
261 // UI thread which will check the status of Chrome as the default, and
262 // send this to the observer.
263 // |interactive_permitted| indicates if the routine is allowed to carry on
264 // in context where user interaction is required (CanSetAsDefault*
265 // returns SET_DEFAULT_INTERACTIVE).
266 void ExecuteSetAsDefault(bool interactive_permitted);
268 // Communicate results to the observer. This function is posted as a task
269 // onto the UI thread by the ExecuteCheckIsDefault function running in the
270 // file thread.
271 void CompleteCheckIsDefault(DefaultWebClientState state);
273 // When the action to set Chrome as the default has completed this function
274 // is run. It is posted as a task back onto the UI thread by the
275 // ExecuteSetAsDefault function running in the file thread. This function
276 // will the start the check process, which, if an observer is present,
277 // reports to it the new status.
278 // |succeeded| is true if the actual call to a set-default function (from
279 // ExecuteSetAsDefault) was successful.
280 void CompleteSetAsDefault(bool succeeded);
282 // Updates the UI in our associated view with the current default web
283 // client state.
284 void UpdateUI(DefaultWebClientState state);
286 DefaultWebClientObserver* observer_;
288 DISALLOW_COPY_AND_ASSIGN(DefaultWebClientWorker);
291 // Worker for checking and setting the default browser.
292 class DefaultBrowserWorker : public DefaultWebClientWorker {
293 public:
294 explicit DefaultBrowserWorker(DefaultWebClientObserver* observer);
296 private:
297 virtual ~DefaultBrowserWorker() {}
299 // Check if Chrome is the default browser.
300 virtual DefaultWebClientState CheckIsDefault() OVERRIDE;
302 // Set Chrome as the default browser.
303 virtual bool SetAsDefault(bool interactive_permitted) OVERRIDE;
305 DISALLOW_COPY_AND_ASSIGN(DefaultBrowserWorker);
308 // Worker for checking and setting the default client application
309 // for a given protocol. A different worker instance is needed for each
310 // protocol you are interested in, so to check or set the default for
311 // multiple protocols you should use multiple worker objects.
312 class DefaultProtocolClientWorker : public DefaultWebClientWorker {
313 public:
314 DefaultProtocolClientWorker(DefaultWebClientObserver* observer,
315 const std::string& protocol);
317 const std::string& protocol() const { return protocol_; }
319 protected:
320 virtual ~DefaultProtocolClientWorker() {}
322 private:
323 // Check is Chrome is the default handler for this protocol.
324 virtual DefaultWebClientState CheckIsDefault() OVERRIDE;
326 // Set Chrome as the default handler for this protocol.
327 virtual bool SetAsDefault(bool interactive_permitted) OVERRIDE;
329 std::string protocol_;
331 DISALLOW_COPY_AND_ASSIGN(DefaultProtocolClientWorker);
335 #endif // CHROME_BROWSER_SHELL_INTEGRATION_H_