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

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

Issue 11886074: Use correct favicon scale factor on Android. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Renamed and added JavaBitmap JNI registration to .h Created 7 years, 11 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/bind.h" 10 #include "base/bind.h"
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 215
216 #if defined(OS_ANDROID) 216 #if defined(OS_ANDROID)
217 #include "content/common/android/device_info.h"
218 #include "content/renderer/android/address_detector.h" 217 #include "content/renderer/android/address_detector.h"
219 #include "content/renderer/android/content_detector.h" 218 #include "content/renderer/android/content_detector.h"
220 #include "content/renderer/android/email_detector.h" 219 #include "content/renderer/android/email_detector.h"
221 #include "content/renderer/android/phone_number_detector.h" 220 #include "content/renderer/android/phone_number_detector.h"
222 #include "content/renderer/media/stream_texture_factory_impl_android.h" 221 #include "content/renderer/media/stream_texture_factory_impl_android.h"
223 #include "content/renderer/media/webmediaplayer_proxy_impl_android.h" 222 #include "content/renderer/media/webmediaplayer_proxy_impl_android.h"
224 #include "third_party/WebKit/Source/Platform/chromium/public/WebFloatPoint.h" 223 #include "third_party/WebKit/Source/Platform/chromium/public/WebFloatPoint.h"
225 #include "third_party/WebKit/Source/Platform/chromium/public/WebFloatRect.h" 224 #include "third_party/WebKit/Source/Platform/chromium/public/WebFloatRect.h"
226 #include "third_party/WebKit/Source/WebKit/chromium/public/WebHitTestResult.h" 225 #include "third_party/WebKit/Source/WebKit/chromium/public/WebHitTestResult.h"
226 #include "ui/gfx/android/device_info.h"
jamesr 2013/01/17 06:12:30 i don't see this file in my tree
Nico 2013/01/17 06:31:33 It's being added / moved in this CL.
227 #include "ui/gfx/rect_f.h" 227 #include "ui/gfx/rect_f.h"
228 #include "webkit/media/android/media_player_bridge_manager_impl.h" 228 #include "webkit/media/android/media_player_bridge_manager_impl.h"
229 #include "webkit/media/android/webmediaplayer_android.h" 229 #include "webkit/media/android/webmediaplayer_android.h"
230 #include "webkit/media/android/webmediaplayer_impl_android.h" 230 #include "webkit/media/android/webmediaplayer_impl_android.h"
231 #include "webkit/media/android/webmediaplayer_in_process_android.h" 231 #include "webkit/media/android/webmediaplayer_in_process_android.h"
232 #include "webkit/media/android/webmediaplayer_manager_android.h" 232 #include "webkit/media/android/webmediaplayer_manager_android.h"
233 #elif defined(OS_WIN) 233 #elif defined(OS_WIN)
234 // TODO(port): these files are currently Windows only because they concern: 234 // TODO(port): these files are currently Windows only because they concern:
235 // * theming 235 // * theming
236 #include "ui/native_theme/native_theme_win.h" 236 #include "ui/native_theme/native_theme_win.h"
(...skipping 421 matching lines...) Expand 10 before | Expand all | Expand 10 after
658 #else 658 #else
659 notification_provider_ = NULL; 659 notification_provider_ = NULL;
660 #endif 660 #endif
661 661
662 webwidget_ = WebView::create(this); 662 webwidget_ = WebView::create(this);
663 webwidget_mouse_lock_target_.reset(new WebWidgetLockTarget(webwidget_)); 663 webwidget_mouse_lock_target_.reset(new WebWidgetLockTarget(webwidget_));
664 664
665 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); 665 const CommandLine& command_line = *CommandLine::ForCurrentProcess();
666 666
667 #if defined(OS_ANDROID) 667 #if defined(OS_ANDROID)
668 scoped_ptr<DeviceInfo> device_info(new DeviceInfo()); 668 scoped_ptr<gfx::DeviceInfo> device_info(new gfx::DeviceInfo());
jamesr 2013/01/17 06:12:30 why are you changing the type go a gfx:: type when
aruslan 2013/01/17 23:01:10 Errr, thanks! I moved this method back to content/
669 669
670 const std::string region_code = 670 const std::string region_code =
671 command_line.HasSwitch(switches::kNetworkCountryIso) 671 command_line.HasSwitch(switches::kNetworkCountryIso)
672 ? command_line.GetSwitchValueASCII(switches::kNetworkCountryIso) 672 ? command_line.GetSwitchValueASCII(switches::kNetworkCountryIso)
673 : device_info->GetNetworkCountryIso(); 673 : device_info->GetNetworkCountryIso();
674 content_detectors_.push_back(linked_ptr<ContentDetector>( 674 content_detectors_.push_back(linked_ptr<ContentDetector>(
675 new AddressDetector())); 675 new AddressDetector()));
676 content_detectors_.push_back(linked_ptr<ContentDetector>( 676 content_detectors_.push_back(linked_ptr<ContentDetector>(
677 new PhoneNumberDetector(region_code))); 677 new PhoneNumberDetector(region_code)));
678 content_detectors_.push_back(linked_ptr<ContentDetector>( 678 content_detectors_.push_back(linked_ptr<ContentDetector>(
(...skipping 5904 matching lines...) Expand 10 before | Expand all | Expand 10 after
6583 } 6583 }
6584 #endif 6584 #endif
6585 6585
6586 void RenderViewImpl::OnReleaseDisambiguationPopupDIB( 6586 void RenderViewImpl::OnReleaseDisambiguationPopupDIB(
6587 TransportDIB::Handle dib_handle) { 6587 TransportDIB::Handle dib_handle) {
6588 TransportDIB* dib = TransportDIB::CreateWithHandle(dib_handle); 6588 TransportDIB* dib = TransportDIB::CreateWithHandle(dib_handle);
6589 RenderProcess::current()->ReleaseTransportDIB(dib); 6589 RenderProcess::current()->ReleaseTransportDIB(dib);
6590 } 6590 }
6591 6591
6592 } // namespace content 6592 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698