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