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

Side by Side Diff: chrome/renderer/geolocation_dispatcher.h

Issue 6366019: Part 1 of repairing regressions to my old clang check plugins so Nico can (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove Nico's changes that I patched in for testing. Created 9 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 CHROME_RENDERER_GEOLOCATION_DISPATCHER_H_ 5 #ifndef CHROME_RENDERER_GEOLOCATION_DISPATCHER_H_
6 #define CHROME_RENDERER_GEOLOCATION_DISPATCHER_H_ 6 #define CHROME_RENDERER_GEOLOCATION_DISPATCHER_H_
7 #pragma once 7 #pragma once
8 8
9 #include "base/scoped_ptr.h" 9 #include "base/scoped_ptr.h"
10 #include "chrome/renderer/render_view_observer.h" 10 #include "chrome/renderer/render_view_observer.h"
(...skipping 14 matching lines...) Expand all
25 // WebKit. 25 // WebKit.
26 // It's the complement of GeolocationDispatcherHost (owned by RenderViewHost). 26 // It's the complement of GeolocationDispatcherHost (owned by RenderViewHost).
27 class GeolocationDispatcher : public RenderViewObserver, 27 class GeolocationDispatcher : public RenderViewObserver,
28 public WebKit::WebGeolocationClient { 28 public WebKit::WebGeolocationClient {
29 public: 29 public:
30 explicit GeolocationDispatcher(RenderView* render_view); 30 explicit GeolocationDispatcher(RenderView* render_view);
31 virtual ~GeolocationDispatcher(); 31 virtual ~GeolocationDispatcher();
32 32
33 private: 33 private:
34 // RenderView::Observer implementation. 34 // RenderView::Observer implementation.
35 bool OnMessageReceived(const IPC::Message& message); 35 virtual bool OnMessageReceived(const IPC::Message& message);
36 36
37 // WebGeolocationClient 37 // WebGeolocationClient
38 virtual void geolocationDestroyed(); 38 virtual void geolocationDestroyed();
39 virtual void startUpdating(); 39 virtual void startUpdating();
40 virtual void stopUpdating(); 40 virtual void stopUpdating();
41 virtual void setEnableHighAccuracy(bool enable_high_accuracy); 41 virtual void setEnableHighAccuracy(bool enable_high_accuracy);
42 virtual void setController(WebKit::WebGeolocationController* controller); 42 virtual void setController(WebKit::WebGeolocationController* controller);
43 virtual bool lastPosition(WebKit::WebGeolocationPosition& position); 43 virtual bool lastPosition(WebKit::WebGeolocationPosition& position);
44 virtual void requestPermission( 44 virtual void requestPermission(
45 const WebKit::WebGeolocationPermissionRequest& permissionRequest); 45 const WebKit::WebGeolocationPermissionRequest& permissionRequest);
(...skipping 14 matching lines...) Expand all
60 // invoked when the underlying object is destroyed. 60 // invoked when the underlying object is destroyed.
61 scoped_ptr< WebKit::WebGeolocationController> controller_; 61 scoped_ptr< WebKit::WebGeolocationController> controller_;
62 62
63 scoped_ptr<WebKit::WebGeolocationPermissionRequestManager> 63 scoped_ptr<WebKit::WebGeolocationPermissionRequestManager>
64 pending_permissions_; 64 pending_permissions_;
65 bool enable_high_accuracy_; 65 bool enable_high_accuracy_;
66 bool updating_; 66 bool updating_;
67 }; 67 };
68 68
69 #endif // CHROME_RENDERER_GEOLOCATION_DISPATCHER_H_ 69 #endif // CHROME_RENDERER_GEOLOCATION_DISPATCHER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698