| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_EXTENSIONS_WEBSTORE_INSTALL_WITH_PROMPT_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_WEBSTORE_INSTALL_WITH_PROMPT_H_ |
| 6 #define CHROME_BROWSER_EXTENSIONS_WEBSTORE_INSTALL_WITH_PROMPT_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_WEBSTORE_INSTALL_WITH_PROMPT_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "chrome/browser/extensions/webstore_standalone_installer.h" | 10 #include "chrome/browser/extensions/webstore_standalone_installer.h" |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 protected: | 47 protected: |
| 48 friend class base::RefCountedThreadSafe<WebstoreInstallWithPrompt>; | 48 friend class base::RefCountedThreadSafe<WebstoreInstallWithPrompt>; |
| 49 virtual ~WebstoreInstallWithPrompt(); | 49 virtual ~WebstoreInstallWithPrompt(); |
| 50 | 50 |
| 51 // extensions::WebstoreStandaloneInstaller overrides: | 51 // extensions::WebstoreStandaloneInstaller overrides: |
| 52 virtual bool CheckRequestorAlive() const OVERRIDE; | 52 virtual bool CheckRequestorAlive() const OVERRIDE; |
| 53 virtual const GURL& GetRequestorURL() const OVERRIDE; | 53 virtual const GURL& GetRequestorURL() const OVERRIDE; |
| 54 virtual bool ShouldShowPostInstallUI() const OVERRIDE; | 54 virtual bool ShouldShowPostInstallUI() const OVERRIDE; |
| 55 virtual bool ShouldShowAppInstalledBubble() const OVERRIDE; | 55 virtual bool ShouldShowAppInstalledBubble() const OVERRIDE; |
| 56 virtual content::WebContents* GetWebContents() const OVERRIDE; | 56 virtual content::WebContents* GetWebContents() const OVERRIDE; |
| 57 virtual scoped_ptr<ExtensionInstallPrompt::Prompt> CreateInstallPrompt() | 57 virtual scoped_refptr<ExtensionInstallPrompt::Prompt> CreateInstallPrompt() |
| 58 const OVERRIDE; | 58 const OVERRIDE; |
| 59 virtual scoped_ptr<ExtensionInstallPrompt> CreateInstallUI() OVERRIDE; | 59 virtual scoped_ptr<ExtensionInstallPrompt> CreateInstallUI() OVERRIDE; |
| 60 virtual bool CheckInlineInstallPermitted( | 60 virtual bool CheckInlineInstallPermitted( |
| 61 const base::DictionaryValue& webstore_data, | 61 const base::DictionaryValue& webstore_data, |
| 62 std::string* error) const OVERRIDE; | 62 std::string* error) const OVERRIDE; |
| 63 virtual bool CheckRequestorPermitted( | 63 virtual bool CheckRequestorPermitted( |
| 64 const base::DictionaryValue& webstore_data, | 64 const base::DictionaryValue& webstore_data, |
| 65 std::string* error) const OVERRIDE; | 65 std::string* error) const OVERRIDE; |
| 66 | 66 |
| 67 // content::PageNavigator overrides: | 67 // content::PageNavigator overrides: |
| 68 virtual content::WebContents* OpenURL( | 68 virtual content::WebContents* OpenURL( |
| 69 const content::OpenURLParams& params) OVERRIDE; | 69 const content::OpenURLParams& params) OVERRIDE; |
| 70 | 70 |
| 71 private: | 71 private: |
| 72 GURL dummy_requestor_url_; | 72 GURL dummy_requestor_url_; |
| 73 | 73 |
| 74 // A non-visible WebContents used to download data from the webstore. | 74 // A non-visible WebContents used to download data from the webstore. |
| 75 scoped_ptr<content::WebContents> dummy_web_contents_; | 75 scoped_ptr<content::WebContents> dummy_web_contents_; |
| 76 | 76 |
| 77 gfx::NativeWindow parent_window_; | 77 gfx::NativeWindow parent_window_; |
| 78 | 78 |
| 79 DISALLOW_COPY_AND_ASSIGN(WebstoreInstallWithPrompt); | 79 DISALLOW_COPY_AND_ASSIGN(WebstoreInstallWithPrompt); |
| 80 }; | 80 }; |
| 81 | 81 |
| 82 } // namespace extensions | 82 } // namespace extensions |
| 83 | 83 |
| 84 #endif // CHROME_BROWSER_EXTENSIONS_WEBSTORE_INSTALL_WITH_PROMPT_H_ | 84 #endif // CHROME_BROWSER_EXTENSIONS_WEBSTORE_INSTALL_WITH_PROMPT_H_ |
| OLD | NEW |