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 <set> | 8 #include <set> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 659 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
670 const WebKit::WebCString& data, | 670 const WebKit::WebCString& data, |
671 PageSerializationStatus status) OVERRIDE; | 671 PageSerializationStatus status) OVERRIDE; |
672 | 672 |
673 // RenderView implementation ------------------------------------------------- | 673 // RenderView implementation ------------------------------------------------- |
674 | 674 |
675 virtual bool Send(IPC::Message* message) OVERRIDE; | 675 virtual bool Send(IPC::Message* message) OVERRIDE; |
676 virtual int GetRoutingID() const OVERRIDE; | 676 virtual int GetRoutingID() const OVERRIDE; |
677 virtual int GetPageId() const OVERRIDE; | 677 virtual int GetPageId() const OVERRIDE; |
678 virtual gfx::Size GetSize() const OVERRIDE; | 678 virtual gfx::Size GetSize() const OVERRIDE; |
679 virtual webkit_glue::WebPreferences& GetWebkitPreferences() OVERRIDE; | 679 virtual webkit_glue::WebPreferences& GetWebkitPreferences() OVERRIDE; |
| 680 virtual void SetWebkitPreferences( |
| 681 const webkit_glue::WebPreferences& preferences) OVERRIDE; |
680 virtual WebKit::WebView* GetWebView() OVERRIDE; | 682 virtual WebKit::WebView* GetWebView() OVERRIDE; |
681 virtual WebKit::WebNode GetFocusedNode() const OVERRIDE; | 683 virtual WebKit::WebNode GetFocusedNode() const OVERRIDE; |
682 virtual WebKit::WebNode GetContextMenuNode() const OVERRIDE; | 684 virtual WebKit::WebNode GetContextMenuNode() const OVERRIDE; |
683 virtual bool IsEditableNode(const WebKit::WebNode& node) const OVERRIDE; | 685 virtual bool IsEditableNode(const WebKit::WebNode& node) const OVERRIDE; |
684 virtual WebKit::WebPlugin* CreatePlugin( | 686 virtual WebKit::WebPlugin* CreatePlugin( |
685 WebKit::WebFrame* frame, | 687 WebKit::WebFrame* frame, |
686 const webkit::WebPluginInfo& info, | 688 const webkit::WebPluginInfo& info, |
687 const WebKit::WebPluginParams& params) OVERRIDE; | 689 const WebKit::WebPluginParams& params) OVERRIDE; |
688 virtual void EvaluateScript(const string16& frame_xpath, | 690 virtual void EvaluateScript(const string16& frame_xpath, |
689 const string16& jscript, | 691 const string16& jscript, |
(...skipping 857 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1547 // use the Observer interface to filter IPC messages and receive frame change | 1549 // use the Observer interface to filter IPC messages and receive frame change |
1548 // notifications. | 1550 // notifications. |
1549 // --------------------------------------------------------------------------- | 1551 // --------------------------------------------------------------------------- |
1550 | 1552 |
1551 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1553 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1552 }; | 1554 }; |
1553 | 1555 |
1554 } // namespace content | 1556 } // namespace content |
1555 | 1557 |
1556 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1558 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |