Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(305)

Side by Side Diff: content/browser/web_contents/web_contents_impl.cc

Issue 1927463002: Rename gfx::Display/Screen to display::Display/Screen in content/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « content/browser/renderer_host/render_widget_host_view_mac.h ('k') | content/browser/web_contents/web_contents_view_aura.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698