OLD | NEW |
---|---|
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 #include "chrome/browser/extensions/webstore_startup_installer.h" | 5 #include "chrome/browser/extensions/webstore_startup_installer.h" |
6 | 6 |
7 #include "chrome/browser/profiles/profile.h" | |
8 #include "content/public/browser/web_contents.h" | |
9 | |
10 using content::WebContents; | |
11 | |
12 namespace extensions { | 7 namespace extensions { |
13 | 8 |
14 WebstoreStartupInstaller::WebstoreStartupInstaller( | 9 WebstoreStartupInstaller::WebstoreStartupInstaller( |
15 const std::string& webstore_item_id, | 10 const std::string& webstore_item_id, |
16 Profile* profile, | 11 Profile* profile, |
17 bool show_prompt, | 12 bool show_prompt, |
18 const Callback& callback) | 13 const Callback& callback) |
19 : WebstoreStandaloneInstaller( | 14 : WebstoreInstallPrompt(webstore_item_id, profile, callback), |
20 webstore_item_id, | 15 show_prompt_(show_prompt) { |
21 profile, | 16 set_install_source(WebstoreInstaller::INSTALL_SOURCE_INLINE); |
tapted
2014/05/28 06:28:46
hm - would it be better to force child classes to
tmdiep
2014/05/28 08:39:27
WebstoreInstallPrompt is instantiated, as well as
| |
22 callback), | |
23 show_prompt_(show_prompt), | |
24 dummy_web_contents_( | |
25 WebContents::Create(WebContents::CreateParams(profile))) { | |
26 } | 17 } |
27 | 18 |
28 WebstoreStartupInstaller::~WebstoreStartupInstaller() {} | 19 WebstoreStartupInstaller::~WebstoreStartupInstaller() {} |
29 | 20 |
30 bool WebstoreStartupInstaller::CheckRequestorAlive() const { | |
31 // Requestor is the command line, so it's always alive. | |
32 return true; | |
33 } | |
34 | |
35 const GURL& WebstoreStartupInstaller::GetRequestorURL() const { | |
36 return dummy_requestor_url_; | |
37 } | |
38 | |
39 scoped_ptr<ExtensionInstallPrompt::Prompt> | 21 scoped_ptr<ExtensionInstallPrompt::Prompt> |
40 WebstoreStartupInstaller::CreateInstallPrompt() const { | 22 WebstoreStartupInstaller::CreateInstallPrompt() const { |
41 scoped_ptr<ExtensionInstallPrompt::Prompt> prompt; | 23 scoped_ptr<ExtensionInstallPrompt::Prompt> prompt; |
42 if (show_prompt_) | 24 if (show_prompt_) |
43 prompt.reset(new ExtensionInstallPrompt::Prompt( | 25 prompt.reset(new ExtensionInstallPrompt::Prompt( |
44 ExtensionInstallPrompt::INSTALL_PROMPT)); | 26 ExtensionInstallPrompt::INSTALL_PROMPT)); |
45 return prompt.Pass(); | 27 return prompt.Pass(); |
46 } | 28 } |
47 | 29 |
48 scoped_ptr<ExtensionInstallPrompt> WebstoreStartupInstaller::CreateInstallUI() { | |
49 // The WebContents passed to ExtensionInstallPrompt is used to find a parent | |
50 // window for the dialog. This class uses a dummy WebContents and has no | |
51 // associated browser window. Pass NULL so the dialog is placed in the middle | |
52 // of the screen. | |
53 return make_scoped_ptr(new ExtensionInstallPrompt(NULL)); | |
54 } | |
55 | |
56 bool WebstoreStartupInstaller::ShouldShowPostInstallUI() const { | |
57 return false; | |
58 } | |
59 | |
60 bool WebstoreStartupInstaller::ShouldShowAppInstalledBubble() const { | |
61 return false; | |
62 } | |
63 | |
64 WebContents* WebstoreStartupInstaller::GetWebContents() const { | |
65 return dummy_web_contents_.get(); | |
66 } | |
67 | |
68 bool WebstoreStartupInstaller::CheckInlineInstallPermitted( | |
69 const base::DictionaryValue& webstore_data, | |
70 std::string* error) const { | |
71 // Requestor is the command line: ignore the property set in the store | |
72 // and always permit inline installs. | |
73 *error = ""; | |
74 return true; | |
75 } | |
76 | |
77 bool WebstoreStartupInstaller::CheckRequestorPermitted( | |
78 const base::DictionaryValue& webstore_data, | |
79 std::string* error) const { | |
80 // Requestor is the command line: always treat it as trusted. | |
81 *error = ""; | |
82 return true; | |
83 } | |
84 | |
85 | |
86 } // namespace extensions | 30 } // namespace extensions |
OLD | NEW |