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_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <functional> | 10 #include <functional> |
(...skipping 12 matching lines...) Expand all Loading... |
23 #include "content/browser/frame_host/frame_tree.h" | 23 #include "content/browser/frame_host/frame_tree.h" |
24 #include "content/browser/frame_host/navigation_controller_delegate.h" | 24 #include "content/browser/frame_host/navigation_controller_delegate.h" |
25 #include "content/browser/frame_host/navigation_controller_impl.h" | 25 #include "content/browser/frame_host/navigation_controller_impl.h" |
26 #include "content/browser/frame_host/navigator_delegate.h" | 26 #include "content/browser/frame_host/navigator_delegate.h" |
27 #include "content/browser/frame_host/render_frame_host_delegate.h" | 27 #include "content/browser/frame_host/render_frame_host_delegate.h" |
28 #include "content/browser/frame_host/render_frame_host_manager.h" | 28 #include "content/browser/frame_host/render_frame_host_manager.h" |
29 #include "content/browser/media/audio_stream_monitor.h" | 29 #include "content/browser/media/audio_stream_monitor.h" |
30 #include "content/browser/renderer_host/render_view_host_delegate.h" | 30 #include "content/browser/renderer_host/render_view_host_delegate.h" |
31 #include "content/browser/renderer_host/render_view_host_impl.h" | 31 #include "content/browser/renderer_host/render_view_host_impl.h" |
32 #include "content/browser/renderer_host/render_widget_host_delegate.h" | 32 #include "content/browser/renderer_host/render_widget_host_delegate.h" |
33 #include "content/common/accessibility_mode_enums.h" | 33 #include "content/common/accessibility_mode.h" |
34 #include "content/common/content_export.h" | 34 #include "content/common/content_export.h" |
35 #include "content/public/browser/color_chooser.h" | 35 #include "content/public/browser/color_chooser.h" |
36 #include "content/public/browser/notification_observer.h" | 36 #include "content/public/browser/notification_observer.h" |
37 #include "content/public/browser/notification_registrar.h" | 37 #include "content/public/browser/notification_registrar.h" |
38 #include "content/public/browser/web_contents.h" | 38 #include "content/public/browser/web_contents.h" |
39 #include "content/public/browser/web_contents_observer.h" | 39 #include "content/public/browser/web_contents_observer.h" |
40 #include "content/public/common/page_importance_signals.h" | 40 #include "content/public/common/page_importance_signals.h" |
41 #include "content/public/common/renderer_preferences.h" | 41 #include "content/public/common/renderer_preferences.h" |
42 #include "content/public/common/resource_type.h" | 42 #include "content/public/common/resource_type.h" |
43 #include "content/public/common/three_d_api_types.h" | 43 #include "content/public/common/three_d_api_types.h" |
(...skipping 1487 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1531 // Adds/removes a callback called on creation of each new WebContents. | 1531 // Adds/removes a callback called on creation of each new WebContents. |
1532 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); | 1532 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); |
1533 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); | 1533 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); |
1534 | 1534 |
1535 DISALLOW_COPY_AND_ASSIGN(FriendZone); | 1535 DISALLOW_COPY_AND_ASSIGN(FriendZone); |
1536 }; | 1536 }; |
1537 | 1537 |
1538 } // namespace content | 1538 } // namespace content |
1539 | 1539 |
1540 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1540 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
OLD | NEW |