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

Side by Side Diff: content/browser/geolocation/geolocation_service_impl.h

Issue 2080513002: Deletes mojo::Callback (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 6 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 <memory> 5 #include <memory>
6 6
7 #include "base/macros.h" 7 #include "base/macros.h"
8 #include "content/browser/geolocation/geolocation_provider_impl.h" 8 #include "content/browser/geolocation/geolocation_provider_impl.h"
9 #include "mojo/public/cpp/bindings/binding.h" 9 #include "mojo/public/cpp/bindings/binding.h"
10 #include "third_party/WebKit/public/platform/modules/geolocation/geolocation.moj om.h" 10 #include "third_party/WebKit/public/platform/modules/geolocation/geolocation.moj om.h"
(...skipping 23 matching lines...) Expand all
34 34
35 // Pauses and resumes sending updates to the client of this instance. 35 // Pauses and resumes sending updates to the client of this instance.
36 void PauseUpdates(); 36 void PauseUpdates();
37 void ResumeUpdates(); 37 void ResumeUpdates();
38 38
39 // Enables and disables geolocation override. 39 // Enables and disables geolocation override.
40 void SetOverride(const Geoposition& position); 40 void SetOverride(const Geoposition& position);
41 void ClearOverride(); 41 void ClearOverride();
42 42
43 private: 43 private:
44 typedef mojo::Callback<void(blink::mojom::GeopositionPtr)> PositionCallback;
45
46 // blink::mojom::GeolocationService: 44 // blink::mojom::GeolocationService:
47 void SetHighAccuracy(bool high_accuracy) override; 45 void SetHighAccuracy(bool high_accuracy) override;
48 void QueryNextPosition(const PositionCallback& callback) override; 46 void QueryNextPosition(const QueryNextPositionCallback& callback) override;
49 47
50 void OnConnectionError(); 48 void OnConnectionError();
51 49
52 void OnLocationUpdate(const Geoposition& position); 50 void OnLocationUpdate(const Geoposition& position);
53 void ReportCurrentPosition(); 51 void ReportCurrentPosition();
54 52
55 // The binding between this object and the other end of the pipe. 53 // The binding between this object and the other end of the pipe.
56 mojo::Binding<blink::mojom::GeolocationService> binding_; 54 mojo::Binding<blink::mojom::GeolocationService> binding_;
57 55
58 // Owns this object. 56 // Owns this object.
59 GeolocationServiceContext* context_; 57 GeolocationServiceContext* context_;
60 std::unique_ptr<GeolocationProvider::Subscription> geolocation_subscription_; 58 std::unique_ptr<GeolocationProvider::Subscription> geolocation_subscription_;
61 59
62 // Callback that allows the instantiator of this class to be notified on 60 // Callback that allows the instantiator of this class to be notified on
63 // position updates. 61 // position updates.
64 base::Closure update_callback_; 62 base::Closure update_callback_;
65 63
66 // The callback passed to QueryNextPosition. 64 // The callback passed to QueryNextPosition.
67 PositionCallback position_callback_; 65 QueryNextPositionCallback position_callback_;
68 66
69 // Valid iff SetOverride() has been called and ClearOverride() has not 67 // Valid iff SetOverride() has been called and ClearOverride() has not
70 // subsequently been called. 68 // subsequently been called.
71 Geoposition position_override_; 69 Geoposition position_override_;
72 70
73 blink::mojom::Geoposition current_position_; 71 blink::mojom::Geoposition current_position_;
74 72
75 // Whether this instance is currently observing location updates with high 73 // Whether this instance is currently observing location updates with high
76 // accuracy. 74 // accuracy.
77 bool high_accuracy_; 75 bool high_accuracy_;
78 76
79 bool has_position_to_report_; 77 bool has_position_to_report_;
80 78
81 DISALLOW_COPY_AND_ASSIGN(GeolocationServiceImpl); 79 DISALLOW_COPY_AND_ASSIGN(GeolocationServiceImpl);
82 }; 80 };
83 81
84 } // namespace content 82 } // namespace content
85 83
86 #endif // CONTENT_BROWSER_GEOLOCATION_GEOLOCATION_SERVICE_IMPL_H_ 84 #endif // CONTENT_BROWSER_GEOLOCATION_GEOLOCATION_SERVICE_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698