| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef SYNC_INTERNAL_API_PUBLIC_EVENTS_NORMAL_GET_UPDATES_REQUEST_EVENT_H_ | |
| 6 #define SYNC_INTERNAL_API_PUBLIC_EVENTS_NORMAL_GET_UPDATES_REQUEST_EVENT_H_ | |
| 7 | |
| 8 #include <memory> | |
| 9 #include <string> | |
| 10 | |
| 11 #include "base/macros.h" | |
| 12 #include "base/time/time.h" | |
| 13 #include "base/values.h" | |
| 14 #include "sync/base/sync_export.h" | |
| 15 #include "sync/internal_api/public/base/model_type.h" | |
| 16 #include "sync/internal_api/public/events/protocol_event.h" | |
| 17 #include "sync/protocol/sync.pb.h" | |
| 18 | |
| 19 namespace syncer { | |
| 20 | |
| 21 namespace sessions { | |
| 22 class NudgeTracker; | |
| 23 } // namespace sessions | |
| 24 | |
| 25 // An event representing a 'normal mode' GetUpdate request to the server. | |
| 26 class SYNC_EXPORT NormalGetUpdatesRequestEvent : public ProtocolEvent { | |
| 27 public: | |
| 28 NormalGetUpdatesRequestEvent( | |
| 29 base::Time timestamp, | |
| 30 const sessions::NudgeTracker& nudge_tracker, | |
| 31 const sync_pb::ClientToServerMessage& request); | |
| 32 | |
| 33 ~NormalGetUpdatesRequestEvent() override; | |
| 34 | |
| 35 base::Time GetTimestamp() const override; | |
| 36 std::string GetType() const override; | |
| 37 std::string GetDetails() const override; | |
| 38 std::unique_ptr<base::DictionaryValue> GetProtoMessage() const override; | |
| 39 std::unique_ptr<ProtocolEvent> Clone() const override; | |
| 40 | |
| 41 private: | |
| 42 NormalGetUpdatesRequestEvent( | |
| 43 base::Time timestamp, | |
| 44 ModelTypeSet nudged_types, | |
| 45 ModelTypeSet notified_types, | |
| 46 ModelTypeSet refresh_requested_types, | |
| 47 bool is_retry, | |
| 48 sync_pb::ClientToServerMessage request); | |
| 49 | |
| 50 const base::Time timestamp_; | |
| 51 | |
| 52 const ModelTypeSet nudged_types_; | |
| 53 const ModelTypeSet notified_types_; | |
| 54 const ModelTypeSet refresh_requested_types_; | |
| 55 const bool is_retry_; | |
| 56 | |
| 57 const sync_pb::ClientToServerMessage request_; | |
| 58 | |
| 59 DISALLOW_COPY_AND_ASSIGN(NormalGetUpdatesRequestEvent); | |
| 60 }; | |
| 61 | |
| 62 } // namespace syncer | |
| 63 | |
| 64 #endif // SYNC_INTERNAL_API_PUBLIC_EVENTS_NORMAL_GET_UPDATES_REQUEST_EVENT_H_ | |
| OLD | NEW |