| 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 603 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 614 | 614 |
| 615 virtual bool Send(IPC::Message* message) OVERRIDE; | 615 virtual bool Send(IPC::Message* message) OVERRIDE; |
| 616 virtual RenderFrame* GetMainRenderFrame() OVERRIDE; | 616 virtual RenderFrame* GetMainRenderFrame() OVERRIDE; |
| 617 virtual int GetRoutingID() const OVERRIDE; | 617 virtual int GetRoutingID() const OVERRIDE; |
| 618 virtual int GetPageId() const OVERRIDE; | 618 virtual int GetPageId() const OVERRIDE; |
| 619 virtual gfx::Size GetSize() const OVERRIDE; | 619 virtual gfx::Size GetSize() const OVERRIDE; |
| 620 virtual WebPreferences& GetWebkitPreferences() OVERRIDE; | 620 virtual WebPreferences& GetWebkitPreferences() OVERRIDE; |
| 621 virtual void SetWebkitPreferences(const WebPreferences& preferences) OVERRIDE; | 621 virtual void SetWebkitPreferences(const WebPreferences& preferences) OVERRIDE; |
| 622 virtual blink::WebView* GetWebView() OVERRIDE; | 622 virtual blink::WebView* GetWebView() OVERRIDE; |
| 623 virtual blink::WebElement GetFocusedElement() const OVERRIDE; | 623 virtual blink::WebElement GetFocusedElement() const OVERRIDE; |
| 624 virtual blink::WebNode GetContextMenuNode() const OVERRIDE; | |
| 625 virtual bool IsEditableNode(const blink::WebNode& node) const OVERRIDE; | 624 virtual bool IsEditableNode(const blink::WebNode& node) const OVERRIDE; |
| 626 virtual void EvaluateScript(const base::string16& frame_xpath, | 625 virtual void EvaluateScript(const base::string16& frame_xpath, |
| 627 const base::string16& jscript, | 626 const base::string16& jscript, |
| 628 int id, | 627 int id, |
| 629 bool notify_result) OVERRIDE; | 628 bool notify_result) OVERRIDE; |
| 630 virtual bool ShouldDisplayScrollbars(int width, int height) const OVERRIDE; | 629 virtual bool ShouldDisplayScrollbars(int width, int height) const OVERRIDE; |
| 631 virtual int GetEnabledBindings() const OVERRIDE; | 630 virtual int GetEnabledBindings() const OVERRIDE; |
| 632 virtual bool GetContentStateImmediately() const OVERRIDE; | 631 virtual bool GetContentStateImmediately() const OVERRIDE; |
| 633 virtual float GetFilteredTimePerFrame() const OVERRIDE; | 632 virtual float GetFilteredTimePerFrame() const OVERRIDE; |
| 634 virtual blink::WebPageVisibilityState GetVisibilityState() const OVERRIDE; | 633 virtual blink::WebPageVisibilityState GetVisibilityState() const OVERRIDE; |
| (...skipping 803 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1438 // use the Observer interface to filter IPC messages and receive frame change | 1437 // use the Observer interface to filter IPC messages and receive frame change |
| 1439 // notifications. | 1438 // notifications. |
| 1440 // --------------------------------------------------------------------------- | 1439 // --------------------------------------------------------------------------- |
| 1441 | 1440 |
| 1442 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1441 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1443 }; | 1442 }; |
| 1444 | 1443 |
| 1445 } // namespace content | 1444 } // namespace content |
| 1446 | 1445 |
| 1447 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1446 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |