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

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

Issue 628773003: Partially convert geolocation IPC to Mojo. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Response to review, fix gn build Created 6 years, 2 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 56
57 AccessibilityMode RenderFrameHostDelegate::GetAccessibilityMode() const { 57 AccessibilityMode RenderFrameHostDelegate::GetAccessibilityMode() const {
58 return AccessibilityModeOff; 58 return AccessibilityModeOff;
59 } 59 }
60 60
61 RenderFrameHost* RenderFrameHostDelegate::GetGuestByInstanceID( 61 RenderFrameHost* RenderFrameHostDelegate::GetGuestByInstanceID(
62 int browser_plugin_instance_id) { 62 int browser_plugin_instance_id) {
63 return NULL; 63 return NULL;
64 } 64 }
65 65
66 GeolocationServiceImplContext*
67 RenderFrameHostDelegate::GetGeolocationContext() {
68 return NULL;
69 }
70
66 #if defined(OS_WIN) 71 #if defined(OS_WIN)
67 gfx::NativeViewAccessible 72 gfx::NativeViewAccessible
68 RenderFrameHostDelegate::GetParentNativeViewAccessible() { 73 RenderFrameHostDelegate::GetParentNativeViewAccessible() {
69 return NULL; 74 return NULL;
70 } 75 }
71 #endif // defined(OS_WIN) 76 #endif // defined(OS_WIN)
72 77
73 } // namespace content 78 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698