| 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 // Sets the position of the context menu for the guest contents. The value | 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 | 91 // reported from the guest renderer should be ignored. The reported value |
| 92 // fromt he guest renderer is incorrect in situations where BrowserPlugin is | 92 // fromt he guest renderer is incorrect in situations where BrowserPlugin is |
| 93 // subject to CSS transforms. | 93 // subject to CSS transforms. |
| 94 virtual void SetContextMenuPosition(const gfx::Point& position) {} | 94 virtual void SetContextMenuPosition(const gfx::Point& position) {} |
| 95 | 95 |
| 96 // TODO(ekaramad): A short workaround to force some types of guests to use | 96 // TODO(ekaramad): A short workaround to force some types of guests to use |
| 97 // a BrowserPlugin even when we are using cross process frames for guests. It | 97 // a BrowserPlugin even when we are using cross process frames for guests. It |
| 98 // should be removed after resolving https://crbug.com/642826). | 98 // should be removed after resolving https://crbug.com/642826). |
| 99 virtual bool CanUseCrossProcessFrames(); | 99 virtual bool CanUseCrossProcessFrames(); |
| 100 |
| 101 // Returns the RenderFrameHost corresponding to the RenderFrame embedding the |
| 102 // BrowserPlugin. This is the main frame for the owner of the guests, unless, |
| 103 // the guest is embedded inside a cross origin frame. |
| 104 virtual RenderFrameHost* GetEmbedderFrame(); |
| 100 }; | 105 }; |
| 101 | 106 |
| 102 } // namespace content | 107 } // namespace content |
| 103 | 108 |
| 104 #endif // CONTENT_PUBLIC_BROWSER_BROWSER_PLUGIN_GUEST_DELEGATE_H_ | 109 #endif // CONTENT_PUBLIC_BROWSER_BROWSER_PLUGIN_GUEST_DELEGATE_H_ |
| OLD | NEW |