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

Unified Diff: blimp/client/feature/geolocation_feature.h

Issue 2161223003: Adds GeolocationFeature for Blimp Geolocation project. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@engine_feature_prep
Patch Set: Addresses Wez's #12 comment Created 4 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: blimp/client/feature/geolocation_feature.h
diff --git a/blimp/client/feature/geolocation_feature.h b/blimp/client/feature/geolocation_feature.h
new file mode 100644
index 0000000000000000000000000000000000000000..b21ce74bd17072b8e3dad72714567bdfd0af8bfe
--- /dev/null
+++ b/blimp/client/feature/geolocation_feature.h
@@ -0,0 +1,65 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef BLIMP_CLIENT_FEATURE_GEOLOCATION_FEATURE_H_
+#define BLIMP_CLIENT_FEATURE_GEOLOCATION_FEATURE_H_
+
+#include <memory>
+#include <string>
+
+#include "blimp/common/proto/geolocation.pb.h"
+#include "blimp/net/blimp_message_processor.h"
+#include "content/public/browser/location_provider.h"
+#include "content/public/common/geoposition.h"
+
+namespace blimp {
+namespace client {
+
+// Client-side feature handling geolocation messages.
+class GeolocationFeature : public BlimpMessageProcessor {
+ public:
+ GeolocationFeature(
+ std::unique_ptr<content::LocationProvider> location_provider);
+ ~GeolocationFeature() override;
+
+ // Sets the BlimpMessageProcessor that will be used to send
+ // BlimpMessage::GEOLOCATION messages to the engine.
+ void set_outgoing_message_processor(
+ std::unique_ptr<BlimpMessageProcessor> processor);
+
+ // BlimpMessageProcessor implementation.
+ void ProcessMessage(std::unique_ptr<BlimpMessage> message,
+ const net::CompletionCallback& callback) override;
+
+ private:
+ // Sends engine an update of the client's geoposition.
+ void OnLocationUpdate(const content::LocationProvider* location_provider,
+ const content::Geoposition& position);
+
+ // Communicates to the client a change of interest level from the engine.
+ void OnGeolocationInterestUpdate(
+ GeolocationSetInterestLevelMessage::Level level);
+
+ // Creates a GeolocationPositionMessage that reflects the given
+ // geoposition and sends it to the engine.
+ void SendGeolocationPositionMessage(const content::Geoposition& position);
+
+ // Creates a GeolocationErrorMessage that reflects the error defined
+ // in the given geoposition and sends it.
+ void SendGeolocationErrorMessage(
+ const content::Geoposition::ErrorCode& error_code,
+ const std::string& error_message);
+
+ std::unique_ptr<content::LocationProvider> location_provider_;
Kevin M 2016/07/28 21:32:42 Comment on the role of location_provider_?
CJ 2016/08/01 19:21:15 Done.
+
+ // Used to send BlimpMessage::GEOLOCATION message to the engine.
+ std::unique_ptr<BlimpMessageProcessor> outgoing_message_processor_;
+
+ DISALLOW_COPY_AND_ASSIGN(GeolocationFeature);
+};
+
+} // namespace client
+} // namespace blimp
+
+#endif // BLIMP_CLIENT_FEATURE_GEOLOCATION_FEATURE_H_

Powered by Google App Engine
This is Rietveld 408576698