| 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 465 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 476 virtual bool GetContentStateImmediately() const OVERRIDE; | 476 virtual bool GetContentStateImmediately() const OVERRIDE; |
| 477 virtual blink::WebPageVisibilityState GetVisibilityState() const OVERRIDE; | 477 virtual blink::WebPageVisibilityState GetVisibilityState() const OVERRIDE; |
| 478 virtual void DidStartLoading() OVERRIDE; | 478 virtual void DidStartLoading() OVERRIDE; |
| 479 virtual void DidStopLoading() OVERRIDE; | 479 virtual void DidStopLoading() OVERRIDE; |
| 480 virtual void Repaint(const gfx::Size& size) OVERRIDE; | 480 virtual void Repaint(const gfx::Size& size) OVERRIDE; |
| 481 virtual void SetEditCommandForNextKeyEvent(const std::string& name, | 481 virtual void SetEditCommandForNextKeyEvent(const std::string& name, |
| 482 const std::string& value) OVERRIDE; | 482 const std::string& value) OVERRIDE; |
| 483 virtual void ClearEditCommands() OVERRIDE; | 483 virtual void ClearEditCommands() OVERRIDE; |
| 484 virtual SSLStatus GetSSLStatusOfFrame(blink::WebFrame* frame) const OVERRIDE; | 484 virtual SSLStatus GetSSLStatusOfFrame(blink::WebFrame* frame) const OVERRIDE; |
| 485 virtual const std::string& GetAcceptLanguages() const OVERRIDE; | 485 virtual const std::string& GetAcceptLanguages() const OVERRIDE; |
| 486 virtual void AttachToBrowserPlugin(int browser_plugin_instance_id, |
| 487 int guest_instance_id) OVERRIDE; |
| 488 |
| 486 #if defined(OS_ANDROID) | 489 #if defined(OS_ANDROID) |
| 487 virtual void UpdateTopControlsState(TopControlsState constraints, | 490 virtual void UpdateTopControlsState(TopControlsState constraints, |
| 488 TopControlsState current, | 491 TopControlsState current, |
| 489 bool animate) OVERRIDE; | 492 bool animate) OVERRIDE; |
| 490 #endif | 493 #endif |
| 491 bool uses_temporary_zoom_level() const { return uses_temporary_zoom_level_; } | 494 bool uses_temporary_zoom_level() const { return uses_temporary_zoom_level_; } |
| 492 | 495 |
| 493 // Please do not add your stuff randomly to the end here. If there is an | 496 // Please do not add your stuff randomly to the end here. If there is an |
| 494 // appropriate section, add it there. If not, there are some random functions | 497 // appropriate section, add it there. If not, there are some random functions |
| 495 // nearer to the top you can add it to. | 498 // nearer to the top you can add it to. |
| (...skipping 648 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1144 // use the Observer interface to filter IPC messages and receive frame change | 1147 // use the Observer interface to filter IPC messages and receive frame change |
| 1145 // notifications. | 1148 // notifications. |
| 1146 // --------------------------------------------------------------------------- | 1149 // --------------------------------------------------------------------------- |
| 1147 | 1150 |
| 1148 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1151 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1149 }; | 1152 }; |
| 1150 | 1153 |
| 1151 } // namespace content | 1154 } // namespace content |
| 1152 | 1155 |
| 1153 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1156 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |