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

Unified Diff: components/sync/engine/events/normal_get_updates_request_event.h

Issue 2436863005: [Sync] Move events files around a bit. (Closed)
Patch Set: Rebase. Created 4 years, 2 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: components/sync/engine/events/normal_get_updates_request_event.h
diff --git a/components/sync/engine/events/normal_get_updates_request_event.h b/components/sync/engine/events/normal_get_updates_request_event.h
deleted file mode 100644
index 91225c58b5ac2be03c9ad2bc10e0e48e79c54b52..0000000000000000000000000000000000000000
--- a/components/sync/engine/events/normal_get_updates_request_event.h
+++ /dev/null
@@ -1,59 +0,0 @@
-// Copyright 2014 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_ENGINE_EVENTS_NORMAL_GET_UPDATES_REQUEST_EVENT_H_
-#define COMPONENTS_SYNC_ENGINE_EVENTS_NORMAL_GET_UPDATES_REQUEST_EVENT_H_
-
-#include <memory>
-#include <string>
-
-#include "base/macros.h"
-#include "base/time/time.h"
-#include "base/values.h"
-#include "components/sync/base/model_type.h"
-#include "components/sync/engine/events/protocol_event.h"
-#include "components/sync/protocol/sync.pb.h"
-
-namespace syncer {
-
-class NudgeTracker;
-
-// An event representing a 'normal mode' GetUpdate request to the server.
-class NormalGetUpdatesRequestEvent : public ProtocolEvent {
- public:
- NormalGetUpdatesRequestEvent(base::Time timestamp,
- const NudgeTracker& nudge_tracker,
- const sync_pb::ClientToServerMessage& request);
-
- ~NormalGetUpdatesRequestEvent() override;
-
- base::Time GetTimestamp() const override;
- std::string GetType() const override;
- std::string GetDetails() const override;
- std::unique_ptr<base::DictionaryValue> GetProtoMessage() const override;
- std::unique_ptr<ProtocolEvent> Clone() const override;
-
- private:
- NormalGetUpdatesRequestEvent(base::Time timestamp,
- ModelTypeSet nudged_types,
- ModelTypeSet notified_types,
- ModelTypeSet refresh_requested_types,
- bool is_retry,
- sync_pb::ClientToServerMessage request);
-
- const base::Time timestamp_;
-
- const ModelTypeSet nudged_types_;
- const ModelTypeSet notified_types_;
- const ModelTypeSet refresh_requested_types_;
- const bool is_retry_;
-
- const sync_pb::ClientToServerMessage request_;
-
- DISALLOW_COPY_AND_ASSIGN(NormalGetUpdatesRequestEvent);
-};
-
-} // namespace syncer
-
-#endif // COMPONENTS_SYNC_ENGINE_EVENTS_NORMAL_GET_UPDATES_REQUEST_EVENT_H_

Powered by Google App Engine
This is Rietveld 408576698