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

Unified Diff: content/browser/renderer_host/render_process_host_impl.cc

Issue 2578503002: [DeviceService] Mojofy left screen orientation IPC messages. (Closed)
Patch Set: Address nits from blundell@ Created 4 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/BUILD.gn ('k') | content/browser/screen_orientation/screen_orientation_listener_android.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/renderer_host/render_process_host_impl.cc
diff --git a/content/browser/renderer_host/render_process_host_impl.cc b/content/browser/renderer_host/render_process_host_impl.cc
index 0ae4796c4068ce17ac8d7c86487eb1d804d77577..7319b864b477fc59e9c0c1c0f07eef5c8e167ead 100644
--- a/content/browser/renderer_host/render_process_host_impl.cc
+++ b/content/browser/renderer_host/render_process_host_impl.cc
@@ -197,7 +197,7 @@
#if defined(OS_ANDROID)
#include "content/browser/android/child_process_launcher_android.h"
-#include "content/browser/screen_orientation/screen_orientation_message_filter_android.h"
+#include "content/browser/screen_orientation/screen_orientation_listener_android.h"
#include "content/public/browser/android/java_interfaces.h"
#include "ipc/ipc_sync_channel.h"
#include "media/audio/android/audio_manager_android.h"
@@ -1177,7 +1177,7 @@ void RenderProcessHostImpl::CreateMessageFilters() {
AddFilter(new PushMessagingMessageFilter(
GetID(), storage_partition_impl_->GetServiceWorkerContext()));
#if defined(OS_ANDROID)
- AddFilter(new ScreenOrientationMessageFilterAndroid());
+ AddFilter(new ScreenOrientationListenerAndroid());
synchronous_compositor_filter_ =
new SynchronousCompositorBrowserFilter(GetID());
AddFilter(synchronous_compositor_filter_.get());
« no previous file with comments | « content/browser/BUILD.gn ('k') | content/browser/screen_orientation/screen_orientation_listener_android.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698