Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 | 7 |
| 8 #include <deque> | 8 #include <deque> |
| 9 #include <map> | 9 #include <map> |
| 10 #include <set> | 10 #include <set> |
| (...skipping 705 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 716 const string16& jscript, | 716 const string16& jscript, |
| 717 int id, | 717 int id, |
| 718 bool notify_result) OVERRIDE; | 718 bool notify_result) OVERRIDE; |
| 719 virtual bool ShouldDisplayScrollbars(int width, int height) const OVERRIDE; | 719 virtual bool ShouldDisplayScrollbars(int width, int height) const OVERRIDE; |
| 720 virtual int GetEnabledBindings() const OVERRIDE; | 720 virtual int GetEnabledBindings() const OVERRIDE; |
| 721 virtual bool GetContentStateImmediately() const OVERRIDE; | 721 virtual bool GetContentStateImmediately() const OVERRIDE; |
| 722 virtual float GetFilteredTimePerFrame() const OVERRIDE; | 722 virtual float GetFilteredTimePerFrame() const OVERRIDE; |
| 723 virtual void ShowContextMenu(WebKit::WebFrame* frame, | 723 virtual void ShowContextMenu(WebKit::WebFrame* frame, |
| 724 const WebKit::WebContextMenuData& data) OVERRIDE; | 724 const WebKit::WebContextMenuData& data) OVERRIDE; |
| 725 virtual WebKit::WebPageVisibilityState GetVisibilityState() const OVERRIDE; | 725 virtual WebKit::WebPageVisibilityState GetVisibilityState() const OVERRIDE; |
| 726 virtual WebKit::WebUserMediaClient *GetUserMediaClient() OVERRIDE; | |
|
perkj_chrome
2012/09/27 13:21:48
virtual WebKit::WebUserMediaClient* GetUserMediaCl
justinlin
2012/10/02 17:19:48
Done.
| |
| 726 virtual void RunModalAlertDialog(WebKit::WebFrame* frame, | 727 virtual void RunModalAlertDialog(WebKit::WebFrame* frame, |
| 727 const WebKit::WebString& message) OVERRIDE; | 728 const WebKit::WebString& message) OVERRIDE; |
| 728 virtual void LoadURLExternally( | 729 virtual void LoadURLExternally( |
| 729 WebKit::WebFrame* frame, | 730 WebKit::WebFrame* frame, |
| 730 const WebKit::WebURLRequest& request, | 731 const WebKit::WebURLRequest& request, |
| 731 WebKit::WebNavigationPolicy policy) OVERRIDE; | 732 WebKit::WebNavigationPolicy policy) OVERRIDE; |
| 732 virtual void Repaint(const gfx::Size& size) OVERRIDE; | 733 virtual void Repaint(const gfx::Size& size) OVERRIDE; |
| 733 | 734 |
| 734 // webkit_glue::WebPluginPageDelegate implementation ------------------------- | 735 // webkit_glue::WebPluginPageDelegate implementation ------------------------- |
| 735 | 736 |
| (...skipping 838 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1574 // bunch of stuff, you should probably create a helper class and put your | 1575 // bunch of stuff, you should probably create a helper class and put your |
| 1575 // data and methods on that to avoid bloating RenderView more. You can | 1576 // data and methods on that to avoid bloating RenderView more. You can |
| 1576 // use the Observer interface to filter IPC messages and receive frame change | 1577 // use the Observer interface to filter IPC messages and receive frame change |
| 1577 // notifications. | 1578 // notifications. |
| 1578 // --------------------------------------------------------------------------- | 1579 // --------------------------------------------------------------------------- |
| 1579 | 1580 |
| 1580 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1581 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1581 }; | 1582 }; |
| 1582 | 1583 |
| 1583 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1584 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |