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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 // Find the given |search_text| in the page. Returns true if the find request | 79 // Find the given |search_text| in the page. Returns true if the find request |
80 // is handled by this browser plugin guest delegate. | 80 // is handled by this browser plugin guest delegate. |
81 virtual bool Find(int request_id, | 81 virtual bool Find(int request_id, |
82 const base::string16& search_text, | 82 const base::string16& search_text, |
83 const blink::WebFindOptions& options); | 83 const blink::WebFindOptions& options); |
84 virtual bool StopFinding(StopFindAction action); | 84 virtual bool StopFinding(StopFindAction action); |
85 | 85 |
86 // Provides the delegate with an interface with which to communicate with the | 86 // Provides the delegate with an interface with which to communicate with the |
87 // content module. | 87 // content module. |
88 virtual void SetGuestHost(GuestHost* guest_host) {} | 88 virtual void SetGuestHost(GuestHost* guest_host) {} |
| 89 |
| 90 // Sets the position of the context menu for the guest contents. The value |
| 91 // reported from the guest renderer should be ignored. The reported value |
| 92 // fromt he guest renderer is incorrect in situations where BrowserPlugin is |
| 93 // subject to CSS transforms. |
| 94 virtual void SetContextMenuPosition(const gfx::Point& position) {} |
89 }; | 95 }; |
90 | 96 |
91 } // namespace content | 97 } // namespace content |
92 | 98 |
93 #endif // CONTENT_PUBLIC_BROWSER_BROWSER_PLUGIN_GUEST_DELEGATE_H_ | 99 #endif // CONTENT_PUBLIC_BROWSER_BROWSER_PLUGIN_GUEST_DELEGATE_H_ |
OLD | NEW |