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_BROWSER_WEB_CONTENTS_OBSERVER_H_ | 5 #ifndef CONTENT_PUBLIC_BROWSER_WEB_CONTENTS_OBSERVER_H_ |
6 #define CONTENT_PUBLIC_BROWSER_WEB_CONTENTS_OBSERVER_H_ | 6 #define CONTENT_PUBLIC_BROWSER_WEB_CONTENTS_OBSERVER_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include "base/macros.h" | 10 #include "base/macros.h" |
11 #include "base/optional.h" | 11 #include "base/optional.h" |
12 #include "base/process/kill.h" | 12 #include "base/process/kill.h" |
13 #include "base/process/process_handle.h" | 13 #include "base/process/process_handle.h" |
14 #include "content/common/content_export.h" | 14 #include "content/common/content_export.h" |
15 #include "content/public/browser/navigation_controller.h" | 15 #include "content/public/browser/navigation_controller.h" |
16 #include "content/public/browser/reload_type.h" | 16 #include "content/public/browser/reload_type.h" |
17 #include "content/public/common/frame_navigate_params.h" | 17 #include "content/public/common/frame_navigate_params.h" |
18 #include "content/public/common/resource_type.h" | 18 #include "content/public/common/resource_type.h" |
19 #include "ipc/ipc_listener.h" | 19 #include "ipc/ipc_listener.h" |
20 #include "ipc/ipc_sender.h" | 20 #include "ipc/ipc_sender.h" |
| 21 #include "third_party/WebKit/public/platform/WebInputEvent.h" |
21 #include "third_party/WebKit/public/platform/WebSecurityStyle.h" | 22 #include "third_party/WebKit/public/platform/WebSecurityStyle.h" |
22 #include "third_party/WebKit/public/web/WebInputEvent.h" | |
23 #include "third_party/skia/include/core/SkColor.h" | 23 #include "third_party/skia/include/core/SkColor.h" |
24 #include "ui/base/page_transition_types.h" | 24 #include "ui/base/page_transition_types.h" |
25 #include "ui/base/window_open_disposition.h" | 25 #include "ui/base/window_open_disposition.h" |
26 | 26 |
27 namespace content { | 27 namespace content { |
28 | 28 |
29 class NavigationEntry; | 29 class NavigationEntry; |
30 class NavigationHandle; | 30 class NavigationHandle; |
31 class RenderFrameHost; | 31 class RenderFrameHost; |
32 class RenderViewHost; | 32 class RenderViewHost; |
(...skipping 474 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
507 void ResetWebContents(); | 507 void ResetWebContents(); |
508 | 508 |
509 WebContentsImpl* web_contents_; | 509 WebContentsImpl* web_contents_; |
510 | 510 |
511 DISALLOW_COPY_AND_ASSIGN(WebContentsObserver); | 511 DISALLOW_COPY_AND_ASSIGN(WebContentsObserver); |
512 }; | 512 }; |
513 | 513 |
514 } // namespace content | 514 } // namespace content |
515 | 515 |
516 #endif // CONTENT_PUBLIC_BROWSER_WEB_CONTENTS_OBSERVER_H_ | 516 #endif // CONTENT_PUBLIC_BROWSER_WEB_CONTENTS_OBSERVER_H_ |
OLD | NEW |