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

Unified Diff: components/sync/user_events/user_event_service.h

Issue 2864973002: [Sync] Create UserEventService. (Closed)
Patch Set: Updates for Patrick. Created 3 years, 7 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
« no previous file with comments | « components/sync/user_events/DEPS ('k') | components/sync/user_events/user_event_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sync/user_events/user_event_service.h
diff --git a/components/sync/user_events/user_event_service.h b/components/sync/user_events/user_event_service.h
new file mode 100644
index 0000000000000000000000000000000000000000..f460d6c358bf5e30f71e5459aadd8a1e6e07f8db
--- /dev/null
+++ b/components/sync/user_events/user_event_service.h
@@ -0,0 +1,59 @@
+// Copyright 2017 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 COMPONENTS_SYNC_USER_EVENTS_USER_EVENT_SERVICE_H_
+#define COMPONENTS_SYNC_USER_EVENTS_USER_EVENT_SERVICE_H_
+
+#include <memory>
+
+#include "base/macros.h"
+#include "base/memory/weak_ptr.h"
+#include "components/keyed_service/core/keyed_service.h"
+
+namespace sync_pb {
+class UserEventSpecifics;
+} // namespace sync_pb
+
+namespace syncer {
+
+class ModelTypeSyncBridge;
+class SyncService;
+class UserEventSyncBridge;
+
+class UserEventService : public KeyedService {
+ public:
+ UserEventService(SyncService* sync_service,
+ std::unique_ptr<UserEventSyncBridge> bridge);
+
+ ~UserEventService() override;
+
+ // KeyedService implementation
+ void Shutdown() override;
+
+ // Records a given event to be reported. Relevant settings will be checked to
+ // verify user events should be emitted and this will no-op if the the
+ // requisite permissions are not present.
+ void RecordUserEvent(std::unique_ptr<sync_pb::UserEventSpecifics> specifics);
+ void RecordUserEvent(const sync_pb::UserEventSpecifics& specifics);
+
+ base::WeakPtr<ModelTypeSyncBridge> GetSyncBridge();
+
+ private:
+ bool CanRecordEvent(const sync_pb::UserEventSpecifics& specifics);
+
+ SyncService* sync_service_;
+
+ std::unique_ptr<UserEventSyncBridge> bridge_;
+
+ // Holds onto a random number for the duration of this execution of chrome. On
+ // restart it will be regenerated. This can be attached to events to know
+ // which events came from the same session.
+ uint64_t session_id_;
+
+ DISALLOW_COPY_AND_ASSIGN(UserEventService);
+};
+
+} // namespace syncer
+
+#endif // COMPONENTS_SYNC_USER_EVENTS_USER_EVENT_SERVICE_H_
« no previous file with comments | « components/sync/user_events/DEPS ('k') | components/sync/user_events/user_event_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698