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 #ifndef CHROME_BROWSER_UI_INTENTS_WEB_INTENT_PICKER_DELEGATE_H_ | 5 #ifndef CHROME_BROWSER_UI_INTENTS_WEB_INTENT_PICKER_DELEGATE_H_ |
6 #define CHROME_BROWSER_UI_INTENTS_WEB_INTENT_PICKER_DELEGATE_H_ | 6 #define CHROME_BROWSER_UI_INTENTS_WEB_INTENT_PICKER_DELEGATE_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
| 9 #include <string> |
9 #include "chrome/browser/ui/intents/web_intent_picker_model.h" | 10 #include "chrome/browser/ui/intents/web_intent_picker_model.h" |
10 | 11 |
11 namespace content { | 12 namespace content { |
12 class WebContents; | 13 class WebContents; |
13 } | 14 } |
14 | 15 |
15 // A class used to notify the delegate when the user has chosen a web intent | 16 // A class used to notify the delegate when the user has chosen a web intent |
16 // service. | 17 // service. |
17 class WebIntentPickerDelegate { | 18 class WebIntentPickerDelegate { |
18 public: | 19 public: |
19 typedef WebIntentPickerModel::Disposition Disposition; | 20 typedef WebIntentPickerModel::Disposition Disposition; |
20 | 21 |
21 // Base destructor. | 22 // Base destructor. |
22 virtual ~WebIntentPickerDelegate() {} | 23 virtual ~WebIntentPickerDelegate() {} |
23 | 24 |
24 // Called when the user has chosen a service. | 25 // Called when the user has chosen a service. |
25 virtual void OnServiceChosen(const GURL& url, Disposition disposition) = 0; | 26 virtual void OnServiceChosen(const GURL& url, Disposition disposition) = 0; |
26 | 27 |
27 // Called when the picker has created WebContents to use for inline | 28 // Called when the picker has created WebContents to use for inline |
28 // disposition. | 29 // disposition. |
29 virtual void OnInlineDispositionWebContentsCreated( | 30 virtual void OnInlineDispositionWebContentsCreated( |
30 content::WebContents* web_contents) = 0; | 31 content::WebContents* web_contents) = 0; |
31 | 32 |
| 33 // Called when the user has chosen to install a suggested extension. |
| 34 virtual void OnExtensionInstallRequested(const std::string& id) = 0; |
| 35 |
32 // Called when the user cancels out of the dialog, whether by closing it | 36 // Called when the user cancels out of the dialog, whether by closing it |
33 // manually or otherwise purposefully. | 37 // manually or otherwise purposefully. |
34 virtual void OnCancelled() = 0; | 38 virtual void OnCancelled() = 0; |
35 | 39 |
36 // Called when the dialog stops showing. | 40 // Called when the dialog stops showing. |
37 virtual void OnClosing() = 0; | 41 virtual void OnClosing() = 0; |
38 }; | 42 }; |
39 | 43 |
40 #endif // CHROME_BROWSER_UI_INTENTS_WEB_INTENT_PICKER_DELEGATE_H_ | 44 #endif // CHROME_BROWSER_UI_INTENTS_WEB_INTENT_PICKER_DELEGATE_H_ |
OLD | NEW |