| 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_PUBLIC_RENDERER_RENDER_VIEW_H_ | 5 #ifndef CONTENT_PUBLIC_RENDERER_RENDER_VIEW_H_ |
| 6 #define CONTENT_PUBLIC_RENDERER_RENDER_VIEW_H_ | 6 #define CONTENT_PUBLIC_RENDERER_RENDER_VIEW_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <string> | 10 #include <string> |
| 11 | 11 |
| 12 #include "base/strings/string16.h" | 12 #include "base/strings/string16.h" |
| 13 #include "build/build_config.h" | 13 #include "build/build_config.h" |
| 14 #include "content/common/content_export.h" | 14 #include "content/common/content_export.h" |
| 15 #include "content/public/common/browser_controls_state.h" | 15 #include "content/public/common/browser_controls_state.h" |
| 16 #include "ipc/ipc_sender.h" | 16 #include "ipc/ipc_sender.h" |
| 17 #include "ui/gfx/geometry/rect_f.h" | 17 #include "ui/gfx/geometry/rect_f.h" |
| 18 #include "ui/gfx/native_widget_types.h" | 18 #include "ui/gfx/native_widget_types.h" |
| 19 | 19 |
| 20 namespace blink { | 20 namespace blink { |
| 21 class WebElement; | 21 class WebElement; |
| 22 class WebFrame; | |
| 23 class WebFrameWidget; | 22 class WebFrameWidget; |
| 24 class WebView; | 23 class WebView; |
| 25 struct WebRect; | 24 struct WebRect; |
| 26 } // namespace blink | 25 } // namespace blink |
| 27 | 26 |
| 28 namespace gfx { | 27 namespace gfx { |
| 29 class Size; | 28 class Size; |
| 30 } | 29 } |
| 31 | 30 |
| 32 namespace content { | 31 namespace content { |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 | 134 |
| 136 private: | 135 private: |
| 137 // This interface should only be implemented inside content. | 136 // This interface should only be implemented inside content. |
| 138 friend class RenderViewImpl; | 137 friend class RenderViewImpl; |
| 139 RenderView() {} | 138 RenderView() {} |
| 140 }; | 139 }; |
| 141 | 140 |
| 142 } // namespace content | 141 } // namespace content |
| 143 | 142 |
| 144 #endif // CONTENT_PUBLIC_RENDERER_RENDER_VIEW_H_ | 143 #endif // CONTENT_PUBLIC_RENDERER_RENDER_VIEW_H_ |
| OLD | NEW |