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" |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 virtual void RequestPointerLockPermission( | 55 virtual void RequestPointerLockPermission( |
56 bool user_gesture, | 56 bool user_gesture, |
57 bool last_unlocked_by_target, | 57 bool last_unlocked_by_target, |
58 const base::Callback<void(bool)>& callback) {} | 58 const base::Callback<void(bool)>& callback) {} |
59 | 59 |
60 // Registers a |callback| with the delegate that the delegate would call when | 60 // Registers a |callback| with the delegate that the delegate would call when |
61 // it is about to be destroyed. | 61 // it is about to be destroyed. |
62 typedef base::Callback<void()> DestructionCallback; | 62 typedef base::Callback<void()> DestructionCallback; |
63 virtual void RegisterDestructionCallback( | 63 virtual void RegisterDestructionCallback( |
64 const DestructionCallback& callback) {} | 64 const DestructionCallback& callback) {} |
| 65 |
| 66 // Find the given |search_text| in the page. Returns true if the find request |
| 67 // is handled by this browser plugin guest delegate. |
| 68 virtual bool Find(int request_id, |
| 69 const base::string16& search_text, |
| 70 const blink::WebFindOptions& options, |
| 71 bool is_full_page_plugin); |
65 }; | 72 }; |
66 | 73 |
67 } // namespace content | 74 } // namespace content |
68 | 75 |
69 #endif // CONTENT_PUBLIC_BROWSER_BROWSER_PLUGIN_GUEST_DELEGATE_H_ | 76 #endif // CONTENT_PUBLIC_BROWSER_BROWSER_PLUGIN_GUEST_DELEGATE_H_ |
OLD | NEW |