| 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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 class WebDateTimeChooserCompletion; | 92 class WebDateTimeChooserCompletion; |
| 93 class WebDragData; | 93 class WebDragData; |
| 94 class WebGestureEvent; | 94 class WebGestureEvent; |
| 95 class WebIconURL; | 95 class WebIconURL; |
| 96 class WebImage; | 96 class WebImage; |
| 97 class WebPeerConnection00Handler; | 97 class WebPeerConnection00Handler; |
| 98 class WebPeerConnection00HandlerClient; | 98 class WebPeerConnection00HandlerClient; |
| 99 class WebMouseEvent; | 99 class WebMouseEvent; |
| 100 class WebPeerConnectionHandler; | 100 class WebPeerConnectionHandler; |
| 101 class WebPeerConnectionHandlerClient; | 101 class WebPeerConnectionHandlerClient; |
| 102 class WebSocketStreamHandle; | |
| 103 class WebSpeechRecognizer; | 102 class WebSpeechRecognizer; |
| 104 class WebStorageNamespace; | 103 class WebStorageNamespace; |
| 105 class WebTouchEvent; | 104 class WebTouchEvent; |
| 106 class WebURLRequest; | 105 class WebURLRequest; |
| 107 struct WebActiveWheelFlingParameters; | 106 struct WebActiveWheelFlingParameters; |
| 108 struct WebDateTimeChooserParams; | 107 struct WebDateTimeChooserParams; |
| 109 struct WebFileChooserParams; | 108 struct WebFileChooserParams; |
| 110 struct WebFindOptions; | 109 struct WebFindOptions; |
| 111 struct WebMediaPlayerAction; | 110 struct WebMediaPlayerAction; |
| 112 struct WebPluginAction; | 111 struct WebPluginAction; |
| (...skipping 993 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1106 // use the Observer interface to filter IPC messages and receive frame change | 1105 // use the Observer interface to filter IPC messages and receive frame change |
| 1107 // notifications. | 1106 // notifications. |
| 1108 // --------------------------------------------------------------------------- | 1107 // --------------------------------------------------------------------------- |
| 1109 | 1108 |
| 1110 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1109 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1111 }; | 1110 }; |
| 1112 | 1111 |
| 1113 } // namespace content | 1112 } // namespace content |
| 1114 | 1113 |
| 1115 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1114 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |