| 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 // Notifies that the content size of the guest has changed in autosize mode. | 33 // Notifies that the content size of the guest has changed in autosize mode. |
| 30 virtual void SizeChanged(const gfx::Size& old_size, | 34 virtual void SizeChanged(const gfx::Size& old_size, |
| 31 const gfx::Size& new_size) {} | 35 const gfx::Size& new_size) {} |
| 32 | 36 |
| 33 // Asks the delegate if the given guest can lock the pointer. | 37 // Asks the delegate if the given guest can lock the pointer. |
| 34 // Invoking the |callback| synchronously is OK. | 38 // Invoking the |callback| synchronously is OK. |
| 35 virtual void RequestPointerLockPermission( | 39 virtual void RequestPointerLockPermission( |
| 36 bool user_gesture, | 40 bool user_gesture, |
| 37 bool last_unlocked_by_target, | 41 bool last_unlocked_by_target, |
| 38 const base::Callback<void(bool)>& callback) {} | 42 const base::Callback<void(bool)>& callback) {} |
| 39 | 43 |
| 40 // Request navigating the guest to the provided |src| URL. | |
| 41 virtual void NavigateGuest(const std::string& src) {} | |
| 42 | |
| 43 // Requests that the delegate destroy itself along with its associated | 44 // Requests that the delegate destroy itself along with its associated |
| 44 // WebContents. | 45 // WebContents. |
| 45 virtual void Destroy() {} | 46 virtual void Destroy() {} |
| 46 | 47 |
| 47 // Registers a |callback| with the delegate that the delegate would call when | 48 // Registers a |callback| with the delegate that the delegate would call when |
| 48 // it is about to be destroyed. | 49 // it is about to be destroyed. |
| 49 typedef base::Callback<void()> DestructionCallback; | 50 typedef base::Callback<void()> DestructionCallback; |
| 50 virtual void RegisterDestructionCallback( | 51 virtual void RegisterDestructionCallback( |
| 51 const DestructionCallback& callback) {} | 52 const DestructionCallback& callback) {} |
| 52 }; | 53 }; |
| 53 | 54 |
| 54 } // namespace content | 55 } // namespace content |
| 55 | 56 |
| 56 #endif // CONTENT_PUBLIC_BROWSER_BROWSER_PLUGIN_GUEST_DELEGATE_H_ | 57 #endif // CONTENT_PUBLIC_BROWSER_BROWSER_PLUGIN_GUEST_DELEGATE_H_ |
| OLD | NEW |