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

Side by Side Diff: content/renderer/render_frame_impl.h

Issue 2391883006: Mojo-ify implementation of screen orientation locking/unlocking. (Closed)
Patch Set: Removing verification of lock success callback cause it was a bud Created 4 years, 1 month 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 11 matching lines...) Expand all
22 #include "base/memory/weak_ptr.h" 22 #include "base/memory/weak_ptr.h"
23 #include "base/observer_list.h" 23 #include "base/observer_list.h"
24 #include "base/process/process_handle.h" 24 #include "base/process/process_handle.h"
25 #include "build/build_config.h" 25 #include "build/build_config.h"
26 #include "content/common/accessibility_mode_enums.h" 26 #include "content/common/accessibility_mode_enums.h"
27 #include "content/common/associated_interface_registry_impl.h" 27 #include "content/common/associated_interface_registry_impl.h"
28 #include "content/common/frame.mojom.h" 28 #include "content/common/frame.mojom.h"
29 #include "content/common/frame_message_enums.h" 29 #include "content/common/frame_message_enums.h"
30 #include "content/common/host_zoom.mojom.h" 30 #include "content/common/host_zoom.mojom.h"
31 #include "content/common/renderer.mojom.h" 31 #include "content/common/renderer.mojom.h"
32 #include "content/common/screen_orientation_interface.mojom.h"
32 #include "content/public/common/console_message_level.h" 33 #include "content/public/common/console_message_level.h"
33 #include "content/public/common/javascript_message_type.h" 34 #include "content/public/common/javascript_message_type.h"
34 #include "content/public/common/referrer.h" 35 #include "content/public/common/referrer.h"
35 #include "content/public/common/stop_find_action.h" 36 #include "content/public/common/stop_find_action.h"
36 #include "content/public/renderer/render_frame.h" 37 #include "content/public/renderer/render_frame.h"
37 #include "content/renderer/frame_blame_context.h" 38 #include "content/renderer/frame_blame_context.h"
38 #include "content/renderer/mojo/blink_interface_provider_impl.h" 39 #include "content/renderer/mojo/blink_interface_provider_impl.h"
39 #include "content/renderer/renderer_webcookiejar_impl.h" 40 #include "content/renderer/renderer_webcookiejar_impl.h"
41 #include "content/renderer/screen_orientation/screen_orientation_dispatcher.h"
40 #include "ipc/ipc_message.h" 42 #include "ipc/ipc_message.h"
41 #include "ipc/ipc_platform_file.h" 43 #include "ipc/ipc_platform_file.h"
42 #include "media/blink/webmediaplayer_delegate.h" 44 #include "media/blink/webmediaplayer_delegate.h"
43 #include "media/blink/webmediaplayer_params.h" 45 #include "media/blink/webmediaplayer_params.h"
44 #include "media/mojo/interfaces/remoting.mojom.h" 46 #include "media/mojo/interfaces/remoting.mojom.h"
45 #include "mojo/public/cpp/bindings/associated_binding.h" 47 #include "mojo/public/cpp/bindings/associated_binding.h"
46 #include "mojo/public/cpp/bindings/binding.h" 48 #include "mojo/public/cpp/bindings/binding.h"
47 #include "services/service_manager/public/interfaces/connector.mojom.h" 49 #include "services/service_manager/public/interfaces/connector.mojom.h"
48 #include "services/service_manager/public/interfaces/interface_provider.mojom.h" 50 #include "services/service_manager/public/interfaces/interface_provider.mojom.h"
49 #include "third_party/WebKit/public/platform/WebEffectiveConnectionType.h" 51 #include "third_party/WebKit/public/platform/WebEffectiveConnectionType.h"
(...skipping 1291 matching lines...) Expand 10 before | Expand all | Expand 10 after
1341 bool browser_side_navigation_pending_ = false; 1343 bool browser_side_navigation_pending_ = false;
1342 1344
1343 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 1345 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
1344 1346
1345 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 1347 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
1346 }; 1348 };
1347 1349
1348 } // namespace content 1350 } // namespace content
1349 1351
1350 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 1352 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698