| 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <deque> | 9 #include <deque> |
| 10 #include <map> | 10 #include <map> |
| (...skipping 562 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 573 // WebKit::WebPageSerializerClient implementation ---------------------------- | 573 // WebKit::WebPageSerializerClient implementation ---------------------------- |
| 574 | 574 |
| 575 virtual void didSerializeDataForFrame( | 575 virtual void didSerializeDataForFrame( |
| 576 const WebKit::WebURL& frame_url, | 576 const WebKit::WebURL& frame_url, |
| 577 const WebKit::WebCString& data, | 577 const WebKit::WebCString& data, |
| 578 PageSerializationStatus status) OVERRIDE; | 578 PageSerializationStatus status) OVERRIDE; |
| 579 | 579 |
| 580 // content::RenderView implementation ---------------------------------------- | 580 // content::RenderView implementation ---------------------------------------- |
| 581 | 581 |
| 582 virtual bool Send(IPC::Message* message) OVERRIDE; | 582 virtual bool Send(IPC::Message* message) OVERRIDE; |
| 583 virtual int GetRoutingId() const OVERRIDE; | 583 virtual int GetRoutingID() const OVERRIDE; |
| 584 virtual int GetPageId() OVERRIDE; | 584 virtual int GetPageId() OVERRIDE; |
| 585 virtual gfx::Size GetSize() OVERRIDE; | 585 virtual gfx::Size GetSize() OVERRIDE; |
| 586 virtual gfx::NativeViewId GetHostWindow() OVERRIDE; | 586 virtual gfx::NativeViewId GetHostWindow() OVERRIDE; |
| 587 virtual WebPreferences& GetWebkitPreferences() OVERRIDE; | 587 virtual WebPreferences& GetWebkitPreferences() OVERRIDE; |
| 588 virtual WebKit::WebView* GetWebView() OVERRIDE; | 588 virtual WebKit::WebView* GetWebView() OVERRIDE; |
| 589 virtual WebKit::WebNode GetFocusedNode() const OVERRIDE; | 589 virtual WebKit::WebNode GetFocusedNode() const OVERRIDE; |
| 590 virtual WebKit::WebNode GetContextMenuNode() const OVERRIDE; | 590 virtual WebKit::WebNode GetContextMenuNode() const OVERRIDE; |
| 591 virtual bool IsEditableNode(const WebKit::WebNode& node) OVERRIDE; | 591 virtual bool IsEditableNode(const WebKit::WebNode& node) OVERRIDE; |
| 592 virtual WebKit::WebPlugin* CreatePlugin( | 592 virtual WebKit::WebPlugin* CreatePlugin( |
| 593 WebKit::WebFrame* frame, | 593 WebKit::WebFrame* frame, |
| (...skipping 694 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1288 // bunch of stuff, you should probably create a helper class and put your | 1288 // bunch of stuff, you should probably create a helper class and put your |
| 1289 // data and methods on that to avoid bloating RenderView more. You can | 1289 // data and methods on that to avoid bloating RenderView more. You can |
| 1290 // use the Observer interface to filter IPC messages and receive frame change | 1290 // use the Observer interface to filter IPC messages and receive frame change |
| 1291 // notifications. | 1291 // notifications. |
| 1292 // --------------------------------------------------------------------------- | 1292 // --------------------------------------------------------------------------- |
| 1293 | 1293 |
| 1294 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1294 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1295 }; | 1295 }; |
| 1296 | 1296 |
| 1297 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1297 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |