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

Side by Side Diff: content/browser/android/content_view_core_impl.cc

Issue 2685513002: [For trybots test] [ScreenOrientation] Hide ScreenOrientationProvider inside WebContentsImpl. (Closed)
Patch Set: Fix android bots Created 3 years, 10 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
« no previous file with comments | « content/browser/BUILD.gn ('k') | content/browser/browser_main_loop.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 2012 The Chromium Authors. All rights reserved. 1 // Copyright 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/android/content_view_core_impl.h" 5 #include "content/browser/android/content_view_core_impl.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 8
9 #include "base/android/jni_android.h" 9 #include "base/android/jni_android.h"
10 #include "base/android/jni_array.h" 10 #include "base/android/jni_array.h"
(...skipping 25 matching lines...) Expand all
36 #include "content/browser/web_contents/web_contents_view_android.h" 36 #include "content/browser/web_contents/web_contents_view_android.h"
37 #include "content/common/frame_messages.h" 37 #include "content/common/frame_messages.h"
38 #include "content/common/input_messages.h" 38 #include "content/common/input_messages.h"
39 #include "content/common/view_messages.h" 39 #include "content/common/view_messages.h"
40 #include "content/public/browser/android/compositor.h" 40 #include "content/public/browser/android/compositor.h"
41 #include "content/public/browser/browser_context.h" 41 #include "content/public/browser/browser_context.h"
42 #include "content/public/browser/browser_thread.h" 42 #include "content/public/browser/browser_thread.h"
43 #include "content/public/browser/favicon_status.h" 43 #include "content/public/browser/favicon_status.h"
44 #include "content/public/browser/render_frame_host.h" 44 #include "content/public/browser/render_frame_host.h"
45 #include "content/public/browser/render_view_host.h" 45 #include "content/public/browser/render_view_host.h"
46 #include "content/public/browser/screen_orientation_provider.h"
47 #include "content/public/browser/ssl_host_state_delegate.h" 46 #include "content/public/browser/ssl_host_state_delegate.h"
48 #include "content/public/browser/web_contents.h" 47 #include "content/public/browser/web_contents.h"
49 #include "content/public/common/content_client.h" 48 #include "content/public/common/content_client.h"
50 #include "content/public/common/content_switches.h" 49 #include "content/public/common/content_switches.h"
51 #include "content/public/common/menu_item.h" 50 #include "content/public/common/menu_item.h"
52 #include "content/public/common/user_agent.h" 51 #include "content/public/common/user_agent.h"
53 #include "device/geolocation/geolocation_service_context.h" 52 #include "device/geolocation/geolocation_service_context.h"
54 #include "jni/ContentViewCore_jni.h" 53 #include "jni/ContentViewCore_jni.h"
55 #include "jni/DragEvent_jni.h" 54 #include "jni/DragEvent_jni.h"
56 #include "third_party/WebKit/public/platform/WebInputEvent.h" 55 #include "third_party/WebKit/public/platform/WebInputEvent.h"
(...skipping 1334 matching lines...) Expand 10 before | Expand all | Expand 10 after
1391 accessibility_state->accessibility_mode()); 1390 accessibility_state->accessibility_mode());
1392 } 1391 }
1393 } 1392 }
1394 } 1393 }
1395 1394
1396 void ContentViewCoreImpl::SendOrientationChangeEventInternal() { 1395 void ContentViewCoreImpl::SendOrientationChangeEventInternal() {
1397 RenderWidgetHostViewAndroid* rwhv = GetRenderWidgetHostViewAndroid(); 1396 RenderWidgetHostViewAndroid* rwhv = GetRenderWidgetHostViewAndroid();
1398 if (rwhv) 1397 if (rwhv)
1399 rwhv->UpdateScreenInfo(GetViewAndroid()); 1398 rwhv->UpdateScreenInfo(GetViewAndroid());
1400 1399
1401 static_cast<WebContentsImpl*>(web_contents()) 1400 static_cast<WebContentsImpl*>(web_contents())->OnScreenOrientationChange();
1402 ->GetScreenOrientationProvider()
1403 ->OnOrientationChange();
1404 } 1401 }
1405 1402
1406 void ContentViewCoreImpl::ExtractSmartClipData(JNIEnv* env, 1403 void ContentViewCoreImpl::ExtractSmartClipData(JNIEnv* env,
1407 const JavaParamRef<jobject>& obj, 1404 const JavaParamRef<jobject>& obj,
1408 jint x, 1405 jint x,
1409 jint y, 1406 jint y,
1410 jint width, 1407 jint width,
1411 jint height) { 1408 jint height) {
1412 gfx::Rect rect( 1409 gfx::Rect rect(
1413 static_cast<int>(x / dpi_scale()), 1410 static_cast<int>(x / dpi_scale()),
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
1586 return ScopedJavaLocalRef<jobject>(); 1583 return ScopedJavaLocalRef<jobject>();
1587 1584
1588 return view->GetJavaObject(); 1585 return view->GetJavaObject();
1589 } 1586 }
1590 1587
1591 bool RegisterContentViewCore(JNIEnv* env) { 1588 bool RegisterContentViewCore(JNIEnv* env) {
1592 return RegisterNativesImpl(env); 1589 return RegisterNativesImpl(env);
1593 } 1590 }
1594 1591
1595 } // namespace content 1592 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/BUILD.gn ('k') | content/browser/browser_main_loop.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698