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 435 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
446 blink::WebPageVisibilityState GetVisibilityState() const override; | 446 blink::WebPageVisibilityState GetVisibilityState() const override; |
447 void DidStartLoading() override; | 447 void DidStartLoading() override; |
448 void DidStopLoading() override; | 448 void DidStopLoading() override; |
449 void Repaint(const gfx::Size& size) override; | 449 void Repaint(const gfx::Size& size) override; |
450 void SetEditCommandForNextKeyEvent(const std::string& name, | 450 void SetEditCommandForNextKeyEvent(const std::string& name, |
451 const std::string& value) override; | 451 const std::string& value) override; |
452 void ClearEditCommands() override; | 452 void ClearEditCommands() override; |
453 SSLStatus GetSSLStatusOfFrame(blink::WebFrame* frame) const override; | 453 SSLStatus GetSSLStatusOfFrame(blink::WebFrame* frame) const override; |
454 const std::string& GetAcceptLanguages() const override; | 454 const std::string& GetAcceptLanguages() const override; |
455 #if defined(OS_ANDROID) | 455 #if defined(OS_ANDROID) |
456 virtual void UpdateTopControlsState(TopControlsState constraints, | 456 void UpdateTopControlsState(TopControlsState constraints, |
457 TopControlsState current, | 457 TopControlsState current, |
458 bool animate) override; | 458 bool animate) override; |
459 #endif | 459 #endif |
460 bool uses_temporary_zoom_level() const { return uses_temporary_zoom_level_; } | 460 bool uses_temporary_zoom_level() const { return uses_temporary_zoom_level_; } |
461 | 461 |
462 // Please do not add your stuff randomly to the end here. If there is an | 462 // Please do not add your stuff randomly to the end here. If there is an |
463 // appropriate section, add it there. If not, there are some random functions | 463 // appropriate section, add it there. If not, there are some random functions |
464 // nearer to the top you can add it to. | 464 // nearer to the top you can add it to. |
465 | 465 |
466 protected: | 466 protected: |
467 // RenderWidget overrides: | 467 // RenderWidget overrides: |
468 void OnClose() override; | 468 void OnClose() override; |
(...skipping 582 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1051 // use the Observer interface to filter IPC messages and receive frame change | 1051 // use the Observer interface to filter IPC messages and receive frame change |
1052 // notifications. | 1052 // notifications. |
1053 // --------------------------------------------------------------------------- | 1053 // --------------------------------------------------------------------------- |
1054 | 1054 |
1055 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1055 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1056 }; | 1056 }; |
1057 | 1057 |
1058 } // namespace content | 1058 } // namespace content |
1059 | 1059 |
1060 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1060 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |