OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 EXTENSIONS_BROWSER_GUEST_VIEW_WEB_VIEW_WEB_VIEW_GUEST_DELEGATE_H_ | 5 #ifndef EXTENSIONS_BROWSER_GUEST_VIEW_WEB_VIEW_WEB_VIEW_GUEST_DELEGATE_H_ |
6 #define EXTENSIONS_BROWSER_GUEST_VIEW_WEB_VIEW_WEB_VIEW_GUEST_DELEGATE_H_ | 6 #define EXTENSIONS_BROWSER_GUEST_VIEW_WEB_VIEW_WEB_VIEW_GUEST_DELEGATE_H_ |
7 | 7 |
8 #include "extensions/browser/guest_view/guest_view_base.h" | 8 #include "extensions/browser/guest_view/guest_view_base.h" |
9 | 9 |
10 namespace content { | 10 namespace content { |
(...skipping 13 matching lines...) Expand all Loading... |
24 } // namespace api | 24 } // namespace api |
25 | 25 |
26 // A delegate class of WebViewGuest that are not a part of chrome. | 26 // A delegate class of WebViewGuest that are not a part of chrome. |
27 class WebViewGuestDelegate { | 27 class WebViewGuestDelegate { |
28 public : | 28 public : |
29 virtual ~WebViewGuestDelegate() {} | 29 virtual ~WebViewGuestDelegate() {} |
30 | 30 |
31 typedef std::vector<linked_ptr<api::web_view_internal::ContextMenuItem> > | 31 typedef std::vector<linked_ptr<api::web_view_internal::ContextMenuItem> > |
32 MenuItemVector; | 32 MenuItemVector; |
33 | 33 |
34 // Returns the current zoom factor. | |
35 virtual double GetZoom() = 0; | |
36 | |
37 // Called when context menu operation was handled. | 34 // Called when context menu operation was handled. |
38 virtual bool HandleContextMenu(const content::ContextMenuParams& params) = 0; | 35 virtual bool HandleContextMenu(const content::ContextMenuParams& params) = 0; |
39 | 36 |
40 // Called to attach helpers just after additional initialization is performed. | 37 // Called to attach helpers just after additional initialization is performed. |
41 virtual void OnAttachWebViewHelpers(content::WebContents* contents) = 0; | 38 virtual void OnAttachWebViewHelpers(content::WebContents* contents) = 0; |
42 | 39 |
43 // Called after the guest has been attached to an embedder and suspended | |
44 // resource loads have been resumed. | |
45 virtual void OnDidAttachToEmbedder() = 0; | |
46 | |
47 // Called when the guest WebContents commits a provisional load in any frame. | 40 // Called when the guest WebContents commits a provisional load in any frame. |
48 virtual void OnDidCommitProvisionalLoadForFrame(bool is_main_frame) = 0; | 41 virtual void OnDidCommitProvisionalLoadForFrame(bool is_main_frame) = 0; |
49 | 42 |
50 // Called just after additional initialization is performed. | 43 // Called just after additional initialization is performed. |
51 virtual void OnDidInitialize() = 0; | 44 virtual void OnDidInitialize() = 0; |
52 | 45 |
53 virtual void OnDocumentLoadedInFrame( | 46 virtual void OnDocumentLoadedInFrame( |
54 content::RenderFrameHost* render_frame_host) = 0; | 47 content::RenderFrameHost* render_frame_host) = 0; |
55 | 48 |
56 // Called before the embedder is destroyed. | |
57 virtual void OnEmbedderWillBeDestroyed() = 0; | |
58 | |
59 // Called immediately after the guest WebContents has been destroyed. | 49 // Called immediately after the guest WebContents has been destroyed. |
60 virtual void OnGuestDestroyed() = 0; | 50 virtual void OnGuestDestroyed() = 0; |
61 | 51 |
62 // Called when to set the zoom factor. | |
63 virtual void OnSetZoom(double zoom_factor) = 0; | |
64 | |
65 // Shows the context menu for the guest. | 52 // Shows the context menu for the guest. |
66 // |items| acts as a filter. This restricts the current context's default | 53 // |items| acts as a filter. This restricts the current context's default |
67 // menu items to contain only the items from |items|. | 54 // menu items to contain only the items from |items|. |
68 // |items| == NULL means no filtering will be applied. | 55 // |items| == NULL means no filtering will be applied. |
69 virtual void OnShowContextMenu( | 56 virtual void OnShowContextMenu( |
70 int request_id, | 57 int request_id, |
71 const MenuItemVector* items) = 0; | 58 const MenuItemVector* items) = 0; |
72 }; | 59 }; |
73 | 60 |
74 } // namespace extensions | 61 } // namespace extensions |
75 | 62 |
76 #endif // EXTENSIONS_BROWSER_GUEST_VIEW_WEB_VIEW_WEB_VIEW_GUEST_DELEGATE_H_ | 63 #endif // EXTENSIONS_BROWSER_GUEST_VIEW_WEB_VIEW_WEB_VIEW_GUEST_DELEGATE_H_ |
OLD | NEW |