| 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 414 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 425 // RenderView implementation ------------------------------------------------- | 425 // RenderView implementation ------------------------------------------------- |
| 426 | 426 |
| 427 bool Send(IPC::Message* message) override; | 427 bool Send(IPC::Message* message) override; |
| 428 RenderFrameImpl* GetMainRenderFrame() override; | 428 RenderFrameImpl* GetMainRenderFrame() override; |
| 429 int GetRoutingID() const override; | 429 int GetRoutingID() const override; |
| 430 gfx::Size GetSize() const override; | 430 gfx::Size GetSize() const override; |
| 431 WebPreferences& GetWebkitPreferences() override; | 431 WebPreferences& GetWebkitPreferences() override; |
| 432 void SetWebkitPreferences(const WebPreferences& preferences) override; | 432 void SetWebkitPreferences(const WebPreferences& preferences) override; |
| 433 blink::WebView* GetWebView() override; | 433 blink::WebView* GetWebView() override; |
| 434 bool IsEditableNode(const blink::WebNode& node) const override; | 434 bool IsEditableNode(const blink::WebNode& node) const override; |
| 435 bool IsPluginNode(const blink::WebNode& node) const override; |
| 435 bool ShouldDisplayScrollbars(int width, int height) const override; | 436 bool ShouldDisplayScrollbars(int width, int height) const override; |
| 436 int GetEnabledBindings() const override; | 437 int GetEnabledBindings() const override; |
| 437 bool GetContentStateImmediately() const override; | 438 bool GetContentStateImmediately() const override; |
| 438 blink::WebPageVisibilityState GetVisibilityState() const override; | 439 blink::WebPageVisibilityState GetVisibilityState() const override; |
| 439 void DidStartLoading() override; | 440 void DidStartLoading() override; |
| 440 void DidStopLoading() override; | 441 void DidStopLoading() override; |
| 441 void Repaint(const gfx::Size& size) override; | 442 void Repaint(const gfx::Size& size) override; |
| 442 void SetEditCommandForNextKeyEvent(const std::string& name, | 443 void SetEditCommandForNextKeyEvent(const std::string& name, |
| 443 const std::string& value) override; | 444 const std::string& value) override; |
| 444 void ClearEditCommands() override; | 445 void ClearEditCommands() override; |
| (...skipping 575 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1020 // use the Observer interface to filter IPC messages and receive frame change | 1021 // use the Observer interface to filter IPC messages and receive frame change |
| 1021 // notifications. | 1022 // notifications. |
| 1022 // --------------------------------------------------------------------------- | 1023 // --------------------------------------------------------------------------- |
| 1023 | 1024 |
| 1024 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1025 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1025 }; | 1026 }; |
| 1026 | 1027 |
| 1027 } // namespace content | 1028 } // namespace content |
| 1028 | 1029 |
| 1029 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1030 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |