| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_FRAME_OBSERVER_H_ | 5 #ifndef CONTENT_PUBLIC_RENDERER_RENDER_FRAME_OBSERVER_H_ |
| 6 #define CONTENT_PUBLIC_RENDERER_RENDER_FRAME_OBSERVER_H_ | 6 #define CONTENT_PUBLIC_RENDERER_RENDER_FRAME_OBSERVER_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 #include "base/strings/string16.h" | 12 #include "base/strings/string16.h" |
| 13 #include "content/common/content_export.h" | 13 #include "content/common/content_export.h" |
| 14 #include "ipc/ipc_listener.h" | 14 #include "ipc/ipc_listener.h" |
| 15 #include "ipc/ipc_sender.h" | 15 #include "ipc/ipc_sender.h" |
| 16 #include "third_party/WebKit/public/platform/WebLoadingBehaviorFlag.h" | 16 #include "third_party/WebKit/public/platform/WebLoadingBehaviorFlag.h" |
| 17 #include "third_party/WebKit/public/platform/WebVector.h" | 17 #include "third_party/WebKit/public/platform/WebVector.h" |
| 18 #include "third_party/WebKit/public/web/WebMeaningfulLayout.h" | 18 #include "third_party/WebKit/public/web/WebMeaningfulLayout.h" |
| 19 #include "v8/include/v8.h" | 19 #include "v8/include/v8.h" |
| 20 | 20 |
| 21 namespace blink { | 21 namespace blink { |
| 22 class WebFormElement; | 22 class WebFormElement; |
| 23 class WebLocalFrame; | |
| 24 class WebNode; | 23 class WebNode; |
| 25 class WebString; | 24 class WebString; |
| 26 struct WebURLError; | 25 struct WebURLError; |
| 27 } | 26 } |
| 28 | 27 |
| 29 namespace content { | 28 namespace content { |
| 30 | 29 |
| 31 class RendererPpapiHost; | 30 class RendererPpapiHost; |
| 32 class RenderFrame; | 31 class RenderFrame; |
| 33 class RenderFrameImpl; | 32 class RenderFrameImpl; |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 RenderFrame* render_frame_; | 144 RenderFrame* render_frame_; |
| 146 // The routing ID of the associated RenderFrame. | 145 // The routing ID of the associated RenderFrame. |
| 147 int routing_id_; | 146 int routing_id_; |
| 148 | 147 |
| 149 DISALLOW_COPY_AND_ASSIGN(RenderFrameObserver); | 148 DISALLOW_COPY_AND_ASSIGN(RenderFrameObserver); |
| 150 }; | 149 }; |
| 151 | 150 |
| 152 } // namespace content | 151 } // namespace content |
| 153 | 152 |
| 154 #endif // CONTENT_PUBLIC_RENDERER_RENDER_FRAME_OBSERVER_H_ | 153 #endif // CONTENT_PUBLIC_RENDERER_RENDER_FRAME_OBSERVER_H_ |
| OLD | NEW |