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

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: less sketchy 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
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 6349 matching lines...) Expand 10 before | Expand all | Expand 10 after
6574 WebURL url = icon_urls[i].iconURL(); 6575 WebURL url = icon_urls[i].iconURL();
6575 if (!url.isEmpty()) 6576 if (!url.isEmpty())
6576 urls.push_back(FaviconURL(url, 6577 urls.push_back(FaviconURL(url,
6577 ToFaviconType(icon_urls[i].iconType()))); 6578 ToFaviconType(icon_urls[i].iconType())));
6578 } 6579 }
6579 SendUpdateFaviconURL(urls); 6580 SendUpdateFaviconURL(urls);
6580 } 6581 }
6581 6582
6582 6583
6583 } // namespace content 6584 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698