blob: 165fa6c43858841a61b2fba8447a23a0a0b5a54f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_SHELL_INTEGRATION_H__
#define CHROME_BROWSER_SHELL_INTEGRATION_H__
#include <string>
class ShellIntegration {
public:
// Sets Chrome as default browser (only for current user). Returns false if
// this operation fails.
static bool SetAsDefaultBrowser();
// Returns true if this instance of Chrome is the default browser. (Defined
// as being the handler for the http/https protocols... we don't want to
// report false here if the user has simply chosen to open HTML files in a
// text editor and ftp links with a FTP client).
static bool IsDefaultBrowser();
// Returns true if IE is likely to be the default browser for the current
// user. This method is very fast so it can be invoked in the UI thread.
static bool IsFirefoxDefaultBrowser();
};
#endif // CHROME_BROWSER_SHELL_INTEGRATION_H__
|