| 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 679 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 690 WebKit::WebFrame* frame, | 690 WebKit::WebFrame* frame, |
| 691 const WebKit::WebURLRequest& request, | 691 const WebKit::WebURLRequest& request, |
| 692 WebKit::WebNavigationPolicy policy) OVERRIDE; | 692 WebKit::WebNavigationPolicy policy) OVERRIDE; |
| 693 virtual void DidStartLoading() OVERRIDE; | 693 virtual void DidStartLoading() OVERRIDE; |
| 694 virtual void DidStopLoading() OVERRIDE; | 694 virtual void DidStopLoading() OVERRIDE; |
| 695 virtual void Repaint(const gfx::Size& size) OVERRIDE; | 695 virtual void Repaint(const gfx::Size& size) OVERRIDE; |
| 696 virtual void SetEditCommandForNextKeyEvent(const std::string& name, | 696 virtual void SetEditCommandForNextKeyEvent(const std::string& name, |
| 697 const std::string& value) OVERRIDE; | 697 const std::string& value) OVERRIDE; |
| 698 virtual void ClearEditCommands() OVERRIDE; | 698 virtual void ClearEditCommands() OVERRIDE; |
| 699 virtual SSLStatus GetSSLStatusOfFrame(WebKit::WebFrame* frame) const OVERRIDE; | 699 virtual SSLStatus GetSSLStatusOfFrame(WebKit::WebFrame* frame) const OVERRIDE; |
| 700 virtual const std::string& GetAcceptLanguages() const OVERRIDE; |
| 700 #if defined(OS_ANDROID) | 701 #if defined(OS_ANDROID) |
| 701 virtual void UpdateTopControlsState(TopControlsState constraints, | 702 virtual void UpdateTopControlsState(TopControlsState constraints, |
| 702 TopControlsState current, | 703 TopControlsState current, |
| 703 bool animate) OVERRIDE; | 704 bool animate) OVERRIDE; |
| 704 #endif | 705 #endif |
| 705 | 706 |
| 706 // WebMediaPlayerDelegate implementation ----------------------- | 707 // WebMediaPlayerDelegate implementation ----------------------- |
| 707 | 708 |
| 708 virtual void DidPlay(WebKit::WebMediaPlayer* player) OVERRIDE; | 709 virtual void DidPlay(WebKit::WebMediaPlayer* player) OVERRIDE; |
| 709 virtual void DidPause(WebKit::WebMediaPlayer* player) OVERRIDE; | 710 virtual void DidPause(WebKit::WebMediaPlayer* player) OVERRIDE; |
| (...skipping 819 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1529 // use the Observer interface to filter IPC messages and receive frame change | 1530 // use the Observer interface to filter IPC messages and receive frame change |
| 1530 // notifications. | 1531 // notifications. |
| 1531 // --------------------------------------------------------------------------- | 1532 // --------------------------------------------------------------------------- |
| 1532 | 1533 |
| 1533 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1534 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1534 }; | 1535 }; |
| 1535 | 1536 |
| 1536 } // namespace content | 1537 } // namespace content |
| 1537 | 1538 |
| 1538 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1539 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |