| 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 479 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 490 virtual int GetPageId() const OVERRIDE; | 490 virtual int GetPageId() const OVERRIDE; |
| 491 virtual gfx::Size GetSize() const OVERRIDE; | 491 virtual gfx::Size GetSize() const OVERRIDE; |
| 492 virtual WebPreferences& GetWebkitPreferences() OVERRIDE; | 492 virtual WebPreferences& GetWebkitPreferences() OVERRIDE; |
| 493 virtual void SetWebkitPreferences(const WebPreferences& preferences) OVERRIDE; | 493 virtual void SetWebkitPreferences(const WebPreferences& preferences) OVERRIDE; |
| 494 virtual blink::WebView* GetWebView() OVERRIDE; | 494 virtual blink::WebView* GetWebView() OVERRIDE; |
| 495 virtual blink::WebElement GetFocusedElement() const OVERRIDE; | 495 virtual blink::WebElement GetFocusedElement() const OVERRIDE; |
| 496 virtual bool IsEditableNode(const blink::WebNode& node) const OVERRIDE; | 496 virtual bool IsEditableNode(const blink::WebNode& node) const OVERRIDE; |
| 497 virtual bool ShouldDisplayScrollbars(int width, int height) const OVERRIDE; | 497 virtual bool ShouldDisplayScrollbars(int width, int height) const OVERRIDE; |
| 498 virtual int GetEnabledBindings() const OVERRIDE; | 498 virtual int GetEnabledBindings() const OVERRIDE; |
| 499 virtual bool GetContentStateImmediately() const OVERRIDE; | 499 virtual bool GetContentStateImmediately() const OVERRIDE; |
| 500 virtual float GetFilteredTimePerFrame() const OVERRIDE; | |
| 501 virtual blink::WebPageVisibilityState GetVisibilityState() const OVERRIDE; | 500 virtual blink::WebPageVisibilityState GetVisibilityState() const OVERRIDE; |
| 502 virtual void DidStartLoading() OVERRIDE; | 501 virtual void DidStartLoading() OVERRIDE; |
| 503 virtual void DidStopLoading() OVERRIDE; | 502 virtual void DidStopLoading() OVERRIDE; |
| 504 virtual void Repaint(const gfx::Size& size) OVERRIDE; | 503 virtual void Repaint(const gfx::Size& size) OVERRIDE; |
| 505 virtual void SetEditCommandForNextKeyEvent(const std::string& name, | 504 virtual void SetEditCommandForNextKeyEvent(const std::string& name, |
| 506 const std::string& value) OVERRIDE; | 505 const std::string& value) OVERRIDE; |
| 507 virtual void ClearEditCommands() OVERRIDE; | 506 virtual void ClearEditCommands() OVERRIDE; |
| 508 virtual SSLStatus GetSSLStatusOfFrame(blink::WebFrame* frame) const OVERRIDE; | 507 virtual SSLStatus GetSSLStatusOfFrame(blink::WebFrame* frame) const OVERRIDE; |
| 509 virtual const std::string& GetAcceptLanguages() const OVERRIDE; | 508 virtual const std::string& GetAcceptLanguages() const OVERRIDE; |
| 510 #if defined(OS_ANDROID) | 509 #if defined(OS_ANDROID) |
| (...skipping 678 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1189 // use the Observer interface to filter IPC messages and receive frame change | 1188 // use the Observer interface to filter IPC messages and receive frame change |
| 1190 // notifications. | 1189 // notifications. |
| 1191 // --------------------------------------------------------------------------- | 1190 // --------------------------------------------------------------------------- |
| 1192 | 1191 |
| 1193 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1192 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1194 }; | 1193 }; |
| 1195 | 1194 |
| 1196 } // namespace content | 1195 } // namespace content |
| 1197 | 1196 |
| 1198 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1197 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |