OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 CONTENT_PUBLIC_BROWSER_BROWSER_PLUGIN_GUEST_DELEGATE_H_ | 5 #ifndef CONTENT_PUBLIC_BROWSER_BROWSER_PLUGIN_GUEST_DELEGATE_H_ |
6 #define CONTENT_PUBLIC_BROWSER_BROWSER_PLUGIN_GUEST_DELEGATE_H_ | 6 #define CONTENT_PUBLIC_BROWSER_BROWSER_PLUGIN_GUEST_DELEGATE_H_ |
7 | 7 |
8 #include "base/callback_forward.h" | 8 #include "base/callback_forward.h" |
9 #include "base/process/kill.h" | 9 #include "base/process/kill.h" |
10 #include "content/common/content_export.h" | 10 #include "content/common/content_export.h" |
11 | 11 |
| 12 namespace base { |
| 13 class DictionaryValue; |
| 14 } // namespace base |
| 15 |
12 namespace gfx { | 16 namespace gfx { |
13 class Size; | 17 class Size; |
14 } // namespace gfx | 18 } // namespace gfx |
15 | 19 |
16 namespace content { | 20 namespace content { |
17 | 21 |
18 class WebContents; | 22 class WebContents; |
19 | 23 |
20 // Objects implement this interface to get notified about changes in the guest | 24 // Objects implement this interface to get notified about changes in the guest |
21 // WebContents and to provide necessary functionality. | 25 // WebContents and to provide necessary functionality. |
22 class CONTENT_EXPORT BrowserPluginGuestDelegate { | 26 class CONTENT_EXPORT BrowserPluginGuestDelegate { |
23 public: | 27 public: |
24 virtual ~BrowserPluginGuestDelegate() {} | 28 virtual ~BrowserPluginGuestDelegate() {} |
25 | 29 |
26 // Notification that the embedder has completed attachment. | 30 // Notification that the embedder has completed attachment. |
27 virtual void DidAttach() {} | 31 virtual void DidAttach(const base::DictionaryValue& extra_params) {} |
28 | 32 |
29 // Informs the delegate that the embedder has been destroyed. | 33 // Informs the delegate that the embedder has been destroyed. |
30 virtual void EmbedderDestroyed() {} | 34 virtual void EmbedderDestroyed() {} |
31 | 35 |
32 // Requests setting the zoom level to the provided |zoom_level|. | 36 // Requests setting the zoom level to the provided |zoom_level|. |
33 virtual void SetZoom(double zoom_factor) {} | 37 virtual void SetZoom(double zoom_factor) {} |
34 | 38 |
35 virtual bool IsDragAndDropEnabled(); | 39 virtual bool IsDragAndDropEnabled(); |
36 | 40 |
37 // Notifies that the content size of the guest has changed in autosize mode. | 41 // Notifies that the content size of the guest has changed in autosize mode. |
38 virtual void SizeChanged(const gfx::Size& old_size, | 42 virtual void SizeChanged(const gfx::Size& old_size, |
39 const gfx::Size& new_size) {} | 43 const gfx::Size& new_size) {} |
40 | 44 |
41 // Asks the delegate if the given guest can lock the pointer. | 45 // Asks the delegate if the given guest can lock the pointer. |
42 // Invoking the |callback| synchronously is OK. | 46 // Invoking the |callback| synchronously is OK. |
43 virtual void RequestPointerLockPermission( | 47 virtual void RequestPointerLockPermission( |
44 bool user_gesture, | 48 bool user_gesture, |
45 bool last_unlocked_by_target, | 49 bool last_unlocked_by_target, |
46 const base::Callback<void(bool)>& callback) {} | 50 const base::Callback<void(bool)>& callback) {} |
47 | 51 |
48 // Request navigating the guest to the provided |src| URL. | |
49 virtual void NavigateGuest(const std::string& src) {} | |
50 | |
51 // Requests that the delegate destroy itself along with its associated | 52 // Requests that the delegate destroy itself along with its associated |
52 // WebContents. | 53 // WebContents. |
53 virtual void Destroy() {} | 54 virtual void Destroy() {} |
54 | 55 |
55 // Registers a |callback| with the delegate that the delegate would call when | 56 // Registers a |callback| with the delegate that the delegate would call when |
56 // it is about to be destroyed. | 57 // it is about to be destroyed. |
57 typedef base::Callback<void(WebContents*)> DestructionCallback; | 58 typedef base::Callback<void(WebContents*)> DestructionCallback; |
58 virtual void RegisterDestructionCallback( | 59 virtual void RegisterDestructionCallback( |
59 const DestructionCallback& callback) {} | 60 const DestructionCallback& callback) {} |
60 }; | 61 }; |
61 | 62 |
62 } // namespace content | 63 } // namespace content |
63 | 64 |
64 #endif // CONTENT_PUBLIC_BROWSER_BROWSER_PLUGIN_GUEST_DELEGATE_H_ | 65 #endif // CONTENT_PUBLIC_BROWSER_BROWSER_PLUGIN_GUEST_DELEGATE_H_ |
OLD | NEW |