Chromium Code Reviews| 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 <set> | 8 #include <set> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 96 } | 96 } |
| 97 #endif | 97 #endif |
| 98 | 98 |
| 99 namespace WebKit { | 99 namespace WebKit { |
| 100 class WebApplicationCacheHost; | 100 class WebApplicationCacheHost; |
| 101 class WebApplicationCacheHostClient; | 101 class WebApplicationCacheHostClient; |
| 102 class WebCompositorOutputSurface; | 102 class WebCompositorOutputSurface; |
| 103 class WebDOMMessageEvent; | 103 class WebDOMMessageEvent; |
| 104 class WebDataSource; | 104 class WebDataSource; |
| 105 class WebDragData; | 105 class WebDragData; |
| 106 class WebFormElement; | |
|
jam
2012/10/29 19:20:17
nit: not needed anymore. remove this and then no m
Dan Beam
2012/10/29 19:22:55
in a previous set of comments I mention that this
| |
| 106 class WebGeolocationClient; | 107 class WebGeolocationClient; |
| 107 class WebGestureEvent; | 108 class WebGestureEvent; |
| 108 class WebIconURL; | 109 class WebIconURL; |
| 109 class WebImage; | 110 class WebImage; |
| 110 class WebPeerConnection00Handler; | 111 class WebPeerConnection00Handler; |
| 111 class WebPeerConnection00HandlerClient; | 112 class WebPeerConnection00HandlerClient; |
| 112 class WebMediaPlayer; | 113 class WebMediaPlayer; |
| 113 class WebMediaPlayerClient; | 114 class WebMediaPlayerClient; |
| 114 class WebMouseEvent; | 115 class WebMouseEvent; |
| 115 class WebPeerConnectionHandler; | 116 class WebPeerConnectionHandler; |
| (...skipping 1424 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1540 // use the Observer interface to filter IPC messages and receive frame change | 1541 // use the Observer interface to filter IPC messages and receive frame change |
| 1541 // notifications. | 1542 // notifications. |
| 1542 // --------------------------------------------------------------------------- | 1543 // --------------------------------------------------------------------------- |
| 1543 | 1544 |
| 1544 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1545 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1545 }; | 1546 }; |
| 1546 | 1547 |
| 1547 } // namespace content | 1548 } // namespace content |
| 1548 | 1549 |
| 1549 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1550 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |