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(blink::WebNode& browser_plugin) OVERRIDE; |
| 487 |
486 #if defined(OS_ANDROID) | 488 #if defined(OS_ANDROID) |
487 virtual void UpdateTopControlsState(TopControlsState constraints, | 489 virtual void UpdateTopControlsState(TopControlsState constraints, |
488 TopControlsState current, | 490 TopControlsState current, |
489 bool animate) OVERRIDE; | 491 bool animate) OVERRIDE; |
490 #endif | 492 #endif |
491 bool uses_temporary_zoom_level() const { return uses_temporary_zoom_level_; } | 493 bool uses_temporary_zoom_level() const { return uses_temporary_zoom_level_; } |
492 | 494 |
493 // Please do not add your stuff randomly to the end here. If there is an | 495 // 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 | 496 // appropriate section, add it there. If not, there are some random functions |
495 // nearer to the top you can add it to. | 497 // 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 | 1146 // use the Observer interface to filter IPC messages and receive frame change |
1145 // notifications. | 1147 // notifications. |
1146 // --------------------------------------------------------------------------- | 1148 // --------------------------------------------------------------------------- |
1147 | 1149 |
1148 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1150 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1149 }; | 1151 }; |
1150 | 1152 |
1151 } // namespace content | 1153 } // namespace content |
1152 | 1154 |
1153 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1155 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |