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

Side by Side Diff: components/html_viewer/geolocation_client_impl.cc

Issue 1677293002: Bye bye Mandoline (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: moar Created 4 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 | « components/html_viewer/geolocation_client_impl.h ('k') | components/html_viewer/global_state.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "components/html_viewer/geolocation_client_impl.h"
6
7 #include "base/logging.h"
8 #include "third_party/WebKit/public/web/WebGeolocationController.h"
9
10 namespace html_viewer {
11
12 GeolocationClientImpl::GeolocationClientImpl() {
13 }
14
15 GeolocationClientImpl::~GeolocationClientImpl() {
16 }
17
18 void GeolocationClientImpl::startUpdating() {
19 NOTIMPLEMENTED();
20 }
21
22 void GeolocationClientImpl::stopUpdating() {
23 NOTIMPLEMENTED();
24 }
25
26 void GeolocationClientImpl::setEnableHighAccuracy(bool) {
27 NOTIMPLEMENTED();
28 }
29
30 bool GeolocationClientImpl::lastPosition(blink::WebGeolocationPosition&) {
31 NOTIMPLEMENTED();
32 return false;
33 }
34
35 void GeolocationClientImpl::requestPermission(
36 const blink::WebGeolocationPermissionRequest&) {
37 NOTIMPLEMENTED();
38 }
39
40 void GeolocationClientImpl::cancelPermissionRequest(
41 const blink::WebGeolocationPermissionRequest&) {
42 NOTIMPLEMENTED();
43 }
44
45 void GeolocationClientImpl::setController(
46 blink::WebGeolocationController* controller) {
47 // Ownership of the WebGeolocationController is transferred to the client.
48 controller_.reset(controller);
49 }
50
51 } // namespace html_viewer
OLDNEW
« no previous file with comments | « components/html_viewer/geolocation_client_impl.h ('k') | components/html_viewer/global_state.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698