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