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 461 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
472 virtual void didSerializeDataForFrame( | 472 virtual void didSerializeDataForFrame( |
473 const blink::WebURL& frame_url, | 473 const blink::WebURL& frame_url, |
474 const blink::WebCString& data, | 474 const blink::WebCString& data, |
475 PageSerializationStatus status) OVERRIDE; | 475 PageSerializationStatus status) OVERRIDE; |
476 | 476 |
477 // RenderView implementation ------------------------------------------------- | 477 // RenderView implementation ------------------------------------------------- |
478 | 478 |
479 virtual bool Send(IPC::Message* message) OVERRIDE; | 479 virtual bool Send(IPC::Message* message) OVERRIDE; |
480 virtual RenderFrame* GetMainRenderFrame() OVERRIDE; | 480 virtual RenderFrame* GetMainRenderFrame() OVERRIDE; |
481 virtual int GetRoutingID() const OVERRIDE; | 481 virtual int GetRoutingID() const OVERRIDE; |
482 virtual int GetPageId() const OVERRIDE; | |
483 virtual gfx::Size GetSize() const OVERRIDE; | 482 virtual gfx::Size GetSize() const OVERRIDE; |
484 virtual WebPreferences& GetWebkitPreferences() OVERRIDE; | 483 virtual WebPreferences& GetWebkitPreferences() OVERRIDE; |
485 virtual void SetWebkitPreferences(const WebPreferences& preferences) OVERRIDE; | 484 virtual void SetWebkitPreferences(const WebPreferences& preferences) OVERRIDE; |
486 virtual blink::WebView* GetWebView() OVERRIDE; | 485 virtual blink::WebView* GetWebView() OVERRIDE; |
487 virtual blink::WebElement GetFocusedElement() const OVERRIDE; | 486 virtual blink::WebElement GetFocusedElement() const OVERRIDE; |
488 virtual bool IsEditableNode(const blink::WebNode& node) const OVERRIDE; | 487 virtual bool IsEditableNode(const blink::WebNode& node) const OVERRIDE; |
489 virtual bool ShouldDisplayScrollbars(int width, int height) const OVERRIDE; | 488 virtual bool ShouldDisplayScrollbars(int width, int height) const OVERRIDE; |
490 virtual int GetEnabledBindings() const OVERRIDE; | 489 virtual int GetEnabledBindings() const OVERRIDE; |
491 virtual bool GetContentStateImmediately() const OVERRIDE; | 490 virtual bool GetContentStateImmediately() const OVERRIDE; |
492 virtual blink::WebPageVisibilityState GetVisibilityState() const OVERRIDE; | 491 virtual blink::WebPageVisibilityState GetVisibilityState() const OVERRIDE; |
(...skipping 676 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1169 // use the Observer interface to filter IPC messages and receive frame change | 1168 // use the Observer interface to filter IPC messages and receive frame change |
1170 // notifications. | 1169 // notifications. |
1171 // --------------------------------------------------------------------------- | 1170 // --------------------------------------------------------------------------- |
1172 | 1171 |
1173 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1172 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1174 }; | 1173 }; |
1175 | 1174 |
1176 } // namespace content | 1175 } // namespace content |
1177 | 1176 |
1178 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1177 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |