| 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_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
| 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 #include "content/public/common/window_container_type.h" | 22 #include "content/public/common/window_container_type.h" |
| 23 #include "net/base/load_states.h" | 23 #include "net/base/load_states.h" |
| 24 #include "third_party/WebKit/public/web/WebAXEnums.h" | 24 #include "third_party/WebKit/public/web/WebAXEnums.h" |
| 25 #include "third_party/WebKit/public/web/WebConsoleMessage.h" | 25 #include "third_party/WebKit/public/web/WebConsoleMessage.h" |
| 26 #include "third_party/WebKit/public/web/WebPopupType.h" | 26 #include "third_party/WebKit/public/web/WebPopupType.h" |
| 27 #include "third_party/skia/include/core/SkColor.h" | 27 #include "third_party/skia/include/core/SkColor.h" |
| 28 #include "ui/base/window_open_disposition.h" | 28 #include "ui/base/window_open_disposition.h" |
| 29 | 29 |
| 30 class SkBitmap; | 30 class SkBitmap; |
| 31 class FrameMsg_Navigate; | 31 class FrameMsg_Navigate; |
| 32 struct FrameMsg_Navigate_Params; | |
| 33 struct MediaPlayerAction; | 32 struct MediaPlayerAction; |
| 34 struct ViewHostMsg_CreateWindow_Params; | 33 struct ViewHostMsg_CreateWindow_Params; |
| 35 struct ViewMsg_PostMessage_Params; | 34 struct ViewMsg_PostMessage_Params; |
| 36 | 35 |
| 37 namespace base { | 36 namespace base { |
| 38 class ListValue; | 37 class ListValue; |
| 39 } | 38 } |
| 40 | 39 |
| 41 namespace gfx { | 40 namespace gfx { |
| 42 class Range; | 41 class Range; |
| (...skipping 406 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 449 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); | 448 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); |
| 450 }; | 449 }; |
| 451 | 450 |
| 452 #if defined(COMPILER_MSVC) | 451 #if defined(COMPILER_MSVC) |
| 453 #pragma warning(pop) | 452 #pragma warning(pop) |
| 454 #endif | 453 #endif |
| 455 | 454 |
| 456 } // namespace content | 455 } // namespace content |
| 457 | 456 |
| 458 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 457 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
| OLD | NEW |