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

Side by Side Diff: content/renderer/render_view_impl.cc

Issue 16216007: split webkit/glue/webpreferences to common and renderer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: new location for public/platform Created 7 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « content/renderer/render_view_impl.h ('k') | content/shell/common/webkit_test_helpers.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/renderer/render_view_impl.h" 5 #include "content/renderer/render_view_impl.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <cmath> 8 #include <cmath>
9 9
10 #include "base/auto_reset.h" 10 #include "base/auto_reset.h"
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 #include "webkit/glue/webkit_glue.h" 205 #include "webkit/glue/webkit_glue.h"
206 #include "webkit/glue/weburlresponse_extradata_impl.h" 206 #include "webkit/glue/weburlresponse_extradata_impl.h"
207 #include "webkit/media/webmediaplayer_impl.h" 207 #include "webkit/media/webmediaplayer_impl.h"
208 #include "webkit/media/webmediaplayer_ms.h" 208 #include "webkit/media/webmediaplayer_ms.h"
209 #include "webkit/media/webmediaplayer_params.h" 209 #include "webkit/media/webmediaplayer_params.h"
210 #include "webkit/plugins/npapi/plugin_list.h" 210 #include "webkit/plugins/npapi/plugin_list.h"
211 #include "webkit/plugins/npapi/plugin_utils.h" 211 #include "webkit/plugins/npapi/plugin_utils.h"
212 #include "webkit/plugins/npapi/webplugin_delegate.h" 212 #include "webkit/plugins/npapi/webplugin_delegate.h"
213 #include "webkit/plugins/npapi/webplugin_delegate_impl.h" 213 #include "webkit/plugins/npapi/webplugin_delegate_impl.h"
214 #include "webkit/plugins/npapi/webplugin_impl.h" 214 #include "webkit/plugins/npapi/webplugin_impl.h"
215 #include "webkit/renderer/webpreferences_renderer.h"
215 216
216 #if defined(OS_ANDROID) 217 #if defined(OS_ANDROID)
217 #include <cpu-features.h> 218 #include <cpu-features.h>
218 219
219 #include "content/common/android/device_telephony_info.h" 220 #include "content/common/android/device_telephony_info.h"
220 #include "content/common/gpu/client/context_provider_command_buffer.h" 221 #include "content/common/gpu/client/context_provider_command_buffer.h"
221 #include "content/renderer/android/address_detector.h" 222 #include "content/renderer/android/address_detector.h"
222 #include "content/renderer/android/content_detector.h" 223 #include "content/renderer/android/content_detector.h"
223 #include "content/renderer/android/email_detector.h" 224 #include "content/renderer/android/email_detector.h"
224 #include "content/renderer/android/phone_number_detector.h" 225 #include "content/renderer/android/phone_number_detector.h"
(...skipping 6347 matching lines...) Expand 10 before | Expand all | Expand 10 after
6572 WebURL url = icon_urls[i].iconURL(); 6573 WebURL url = icon_urls[i].iconURL();
6573 if (!url.isEmpty()) 6574 if (!url.isEmpty())
6574 urls.push_back(FaviconURL(url, 6575 urls.push_back(FaviconURL(url,
6575 ToFaviconType(icon_urls[i].iconType()))); 6576 ToFaviconType(icon_urls[i].iconType())));
6576 } 6577 }
6577 SendUpdateFaviconURL(urls); 6578 SendUpdateFaviconURL(urls);
6578 } 6579 }
6579 6580
6580 6581
6581 } // namespace content 6582 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/render_view_impl.h ('k') | content/shell/common/webkit_test_helpers.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698