| 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 #include "content/browser/web_contents/web_contents_impl.h" | 5 #include "content/browser/web_contents/web_contents_impl.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 | 8 |
| 9 #include <cmath> | 9 #include <cmath> |
| 10 #include <utility> | 10 #include <utility> |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 #include "mojo/converters/geometry/geometry_type_converters.h" | 117 #include "mojo/converters/geometry/geometry_type_converters.h" |
| 118 #include "net/http/http_cache.h" | 118 #include "net/http/http_cache.h" |
| 119 #include "net/http/http_transaction_factory.h" | 119 #include "net/http/http_transaction_factory.h" |
| 120 #include "net/url_request/url_request_context.h" | 120 #include "net/url_request/url_request_context.h" |
| 121 #include "net/url_request/url_request_context_getter.h" | 121 #include "net/url_request/url_request_context_getter.h" |
| 122 #include "skia/public/type_converters.h" | 122 #include "skia/public/type_converters.h" |
| 123 #include "third_party/WebKit/public/web/WebSandboxFlags.h" | 123 #include "third_party/WebKit/public/web/WebSandboxFlags.h" |
| 124 #include "third_party/skia/include/core/SkBitmap.h" | 124 #include "third_party/skia/include/core/SkBitmap.h" |
| 125 #include "ui/accessibility/ax_tree_combiner.h" | 125 #include "ui/accessibility/ax_tree_combiner.h" |
| 126 #include "ui/base/layout.h" | 126 #include "ui/base/layout.h" |
| 127 #include "ui/gfx/display.h" | |
| 128 #include "ui/gfx/screen.h" | |
| 129 #include "ui/gl/gl_switches.h" | 127 #include "ui/gl/gl_switches.h" |
| 130 | 128 |
| 131 #if defined(OS_ANDROID) | 129 #if defined(OS_ANDROID) |
| 132 #include "content/browser/android/content_video_view.h" | 130 #include "content/browser/android/content_video_view.h" |
| 133 #include "content/browser/android/date_time_chooser_android.h" | 131 #include "content/browser/android/date_time_chooser_android.h" |
| 134 #include "content/browser/media/android/media_web_contents_observer_android.h" | 132 #include "content/browser/media/android/media_web_contents_observer_android.h" |
| 135 #include "content/browser/web_contents/web_contents_android.h" | 133 #include "content/browser/web_contents/web_contents_android.h" |
| 136 #endif // OS_ANDROID | 134 #endif // OS_ANDROID |
| 137 | 135 |
| 138 #if defined(OS_MACOSX) | 136 #if defined(OS_MACOSX) |
| (...skipping 4826 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4965 for (RenderViewHost* render_view_host : render_view_host_set) | 4963 for (RenderViewHost* render_view_host : render_view_host_set) |
| 4966 render_view_host->OnWebkitPreferencesChanged(); | 4964 render_view_host->OnWebkitPreferencesChanged(); |
| 4967 } | 4965 } |
| 4968 | 4966 |
| 4969 void WebContentsImpl::SetJavaScriptDialogManagerForTesting( | 4967 void WebContentsImpl::SetJavaScriptDialogManagerForTesting( |
| 4970 JavaScriptDialogManager* dialog_manager) { | 4968 JavaScriptDialogManager* dialog_manager) { |
| 4971 dialog_manager_ = dialog_manager; | 4969 dialog_manager_ = dialog_manager; |
| 4972 } | 4970 } |
| 4973 | 4971 |
| 4974 } // namespace content | 4972 } // namespace content |
| OLD | NEW |