OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_RENDERER_RENDER_VIEW_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <deque> | 9 #include <deque> |
10 #include <map> | 10 #include <map> |
(...skipping 571 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
582 virtual float GetFilteredTimePerFrame() OVERRIDE; | 582 virtual float GetFilteredTimePerFrame() OVERRIDE; |
583 virtual void ShowContextMenu(WebKit::WebFrame* frame, | 583 virtual void ShowContextMenu(WebKit::WebFrame* frame, |
584 const WebKit::WebContextMenuData& data) OVERRIDE; | 584 const WebKit::WebContextMenuData& data) OVERRIDE; |
585 virtual WebKit::WebPageVisibilityState GetVisibilityState() const OVERRIDE; | 585 virtual WebKit::WebPageVisibilityState GetVisibilityState() const OVERRIDE; |
586 virtual void RunModalAlertDialog(WebKit::WebFrame* frame, | 586 virtual void RunModalAlertDialog(WebKit::WebFrame* frame, |
587 const WebKit::WebString& message) OVERRIDE; | 587 const WebKit::WebString& message) OVERRIDE; |
588 virtual void LoadURLExternally( | 588 virtual void LoadURLExternally( |
589 WebKit::WebFrame* frame, | 589 WebKit::WebFrame* frame, |
590 const WebKit::WebURLRequest& request, | 590 const WebKit::WebURLRequest& request, |
591 WebKit::WebNavigationPolicy policy) OVERRIDE; | 591 WebKit::WebNavigationPolicy policy) OVERRIDE; |
| 592 virtual bool IsInFullscreenMode() OVERRIDE; |
592 | 593 |
593 // webkit_glue::WebPluginPageDelegate implementation ------------------------- | 594 // webkit_glue::WebPluginPageDelegate implementation ------------------------- |
594 | 595 |
595 virtual webkit::npapi::WebPluginDelegate* CreatePluginDelegate( | 596 virtual webkit::npapi::WebPluginDelegate* CreatePluginDelegate( |
596 const FilePath& file_path, | 597 const FilePath& file_path, |
597 const std::string& mime_type); | 598 const std::string& mime_type); |
598 virtual void CreatedPluginWindow(gfx::PluginWindowHandle handle); | 599 virtual void CreatedPluginWindow(gfx::PluginWindowHandle handle); |
599 virtual void WillDestroyPluginWindow(gfx::PluginWindowHandle handle); | 600 virtual void WillDestroyPluginWindow(gfx::PluginWindowHandle handle); |
600 virtual void DidMovePlugin(const webkit::npapi::WebPluginGeometry& move); | 601 virtual void DidMovePlugin(const webkit::npapi::WebPluginGeometry& move); |
601 virtual void DidStartLoadingForPlugin(); | 602 virtual void DidStartLoadingForPlugin(); |
(...skipping 607 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1209 // bunch of stuff, you should probably create a helper class and put your | 1210 // bunch of stuff, you should probably create a helper class and put your |
1210 // data and methods on that to avoid bloating RenderView more. You can | 1211 // data and methods on that to avoid bloating RenderView more. You can |
1211 // use the Observer interface to filter IPC messages and receive frame change | 1212 // use the Observer interface to filter IPC messages and receive frame change |
1212 // notifications. | 1213 // notifications. |
1213 // --------------------------------------------------------------------------- | 1214 // --------------------------------------------------------------------------- |
1214 | 1215 |
1215 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1216 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1216 }; | 1217 }; |
1217 | 1218 |
1218 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1219 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |