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

Side by Side Diff: content/browser/frame_host/render_frame_host_delegate.cc

Issue 549603003: Create Mojo service for locking/unlocking screen orientation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Nits Created 6 years, 3 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
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 #include <stddef.h> 5 #include <stddef.h>
6 6
7 #include "base/callback.h" 7 #include "base/callback.h"
8 #include "base/strings/string16.h" 8 #include "base/strings/string16.h"
9 #include "content/browser/frame_host/render_frame_host_delegate.h" 9 #include "content/browser/frame_host/render_frame_host_delegate.h"
10 #include "ui/gfx/native_widget_types.h" 10 #include "ui/gfx/native_widget_types.h"
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 return NULL; 53 return NULL;
54 } 54 }
55 55
56 #if defined(OS_WIN) 56 #if defined(OS_WIN)
57 gfx::NativeViewAccessible 57 gfx::NativeViewAccessible
58 RenderFrameHostDelegate::GetParentNativeViewAccessible() { 58 RenderFrameHostDelegate::GetParentNativeViewAccessible() {
59 return NULL; 59 return NULL;
60 } 60 }
61 #endif // defined(OS_WIN) 61 #endif // defined(OS_WIN)
62 62
63 ScreenOrientationProvider*
64 RenderFrameHostDelegate::GetScreenOrientationProvider() {
65 return NULL;
66 }
67
63 } // namespace content 68 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698