| 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 <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 #endif | 66 #endif |
| 67 | 67 |
| 68 #if defined(COMPILER_MSVC) | 68 #if defined(COMPILER_MSVC) |
| 69 // RenderViewImpl is a diamond-shaped hierarchy, with WebWidgetClient at the | 69 // RenderViewImpl is a diamond-shaped hierarchy, with WebWidgetClient at the |
| 70 // root. VS warns when we inherit the WebWidgetClient method implementations | 70 // root. VS warns when we inherit the WebWidgetClient method implementations |
| 71 // from RenderWidget. It's safe to ignore that warning. | 71 // from RenderWidget. It's safe to ignore that warning. |
| 72 #pragma warning(disable: 4250) | 72 #pragma warning(disable: 4250) |
| 73 #endif | 73 #endif |
| 74 | 74 |
| 75 namespace blink { | 75 namespace blink { |
| 76 class WebApplicationCacheHost; | |
| 77 class WebDataSource; | 76 class WebDataSource; |
| 78 class WebDateTimeChooserCompletion; | 77 class WebDateTimeChooserCompletion; |
| 79 class WebGestureEvent; | 78 class WebGestureEvent; |
| 80 class WebIconURL; | 79 class WebIconURL; |
| 81 class WebImage; | |
| 82 class WebMouseEvent; | 80 class WebMouseEvent; |
| 83 class WebSpeechRecognizer; | 81 class WebSpeechRecognizer; |
| 84 class WebStorageNamespace; | 82 class WebStorageNamespace; |
| 85 class WebURLRequest; | 83 class WebURLRequest; |
| 86 struct WebActiveWheelFlingParameters; | 84 struct WebActiveWheelFlingParameters; |
| 87 struct WebDateTimeChooserParams; | 85 struct WebDateTimeChooserParams; |
| 88 struct WebMediaPlayerAction; | 86 struct WebMediaPlayerAction; |
| 89 struct WebPluginAction; | 87 struct WebPluginAction; |
| 90 struct WebPoint; | 88 struct WebPoint; |
| 91 struct WebWindowFeatures; | 89 struct WebWindowFeatures; |
| (...skipping 762 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 854 // use the Observer interface to filter IPC messages and receive frame change | 852 // use the Observer interface to filter IPC messages and receive frame change |
| 855 // notifications. | 853 // notifications. |
| 856 // --------------------------------------------------------------------------- | 854 // --------------------------------------------------------------------------- |
| 857 | 855 |
| 858 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 856 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 859 }; | 857 }; |
| 860 | 858 |
| 861 } // namespace content | 859 } // namespace content |
| 862 | 860 |
| 863 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 861 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |