Chromium Code Reviews| 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 | |
|
Xi Han
2014/08/12 18:17:55
Unnecessary change, please revert.
| |
| 486 #if defined(OS_ANDROID) | 487 #if defined(OS_ANDROID) |
| 487 virtual void UpdateTopControlsState(TopControlsState constraints, | 488 virtual void UpdateTopControlsState(TopControlsState constraints, |
| 488 TopControlsState current, | 489 TopControlsState current, |
| 489 bool animate) OVERRIDE; | 490 bool animate) OVERRIDE; |
| 490 #endif | 491 #endif |
| 491 bool uses_temporary_zoom_level() const { return uses_temporary_zoom_level_; } | 492 bool uses_temporary_zoom_level() const { return uses_temporary_zoom_level_; } |
| 492 | 493 |
| 493 // Please do not add your stuff randomly to the end here. If there is an | 494 // 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 | 495 // appropriate section, add it there. If not, there are some random functions |
| 495 // nearer to the top you can add it to. | 496 // nearer to the top you can add it to. |
| (...skipping 649 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1145 // use the Observer interface to filter IPC messages and receive frame change | 1146 // use the Observer interface to filter IPC messages and receive frame change |
| 1146 // notifications. | 1147 // notifications. |
| 1147 // --------------------------------------------------------------------------- | 1148 // --------------------------------------------------------------------------- |
| 1148 | 1149 |
| 1149 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1150 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1150 }; | 1151 }; |
| 1151 | 1152 |
| 1152 } // namespace content | 1153 } // namespace content |
| 1153 | 1154 |
| 1154 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1155 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |