Searched refs:ProtocolEvent (Results 1 - 25 of 50) sorted by relevance

12

/external/chromium_org/sync/internal_api/events/
H A Dprotocol_event.cc9 ProtocolEvent::ProtocolEvent() {} function in class:syncer::ProtocolEvent
11 ProtocolEvent::~ProtocolEvent() {}
13 scoped_ptr<base::DictionaryValue> ProtocolEvent::ToValue(
14 const ProtocolEvent& event) {
H A Dcommit_response_event.cc39 scoped_ptr<ProtocolEvent> CommitResponseEvent::Clone() const {
40 return scoped_ptr<ProtocolEvent>(
H A Dpoll_get_updates_request_event.cc37 scoped_ptr<ProtocolEvent> PollGetUpdatesRequestEvent::Clone() const {
38 return scoped_ptr<ProtocolEvent>(
H A Dcommit_request_event.cc46 scoped_ptr<ProtocolEvent> CommitRequestEvent::Clone() const {
47 return scoped_ptr<ProtocolEvent>(
H A Dconfigure_get_updates_request_event.cc41 scoped_ptr<ProtocolEvent> ConfigureGetUpdatesRequestEvent::Clone() const {
42 return scoped_ptr<ProtocolEvent>(
H A Dget_updates_response_event.cc51 scoped_ptr<ProtocolEvent> GetUpdatesResponseEvent::Clone() const {
52 return scoped_ptr<ProtocolEvent>(
H A Dnormal_get_updates_request_event.cc76 scoped_ptr<ProtocolEvent> NormalGetUpdatesRequestEvent::Clone() const {
77 return scoped_ptr<ProtocolEvent>(
/external/chromium_org/sync/internal_api/
H A Dprotocol_event_buffer.h15 class ProtocolEvent;
28 void RecordProtocolEvent(const ProtocolEvent& event);
31 ScopedVector<ProtocolEvent> GetBufferedProtocolEvents() const;
34 std::deque<ProtocolEvent*> buffer_;
35 STLElementDeleter<std::deque<ProtocolEvent*> > buffer_deleter_;
H A Dprotocol_event_buffer.cc18 void ProtocolEventBuffer::RecordProtocolEvent(const ProtocolEvent& event) {
21 ProtocolEvent* to_delete = buffer_.front();
27 ScopedVector<ProtocolEvent>
29 ScopedVector<ProtocolEvent> ret;
30 for (std::deque<ProtocolEvent*>::const_iterator it = buffer_.begin();
H A Dprotocol_event_buffer_unittest.cc21 static scoped_ptr<ProtocolEvent> MakeTestEvent(int64 id);
22 static bool HasId(const ProtocolEvent& event, int64 id);
32 scoped_ptr<ProtocolEvent> ProtocolEventBufferTest::MakeTestEvent(int64 id) {
34 return scoped_ptr<ProtocolEvent>(
40 bool ProtocolEventBufferTest::HasId(const ProtocolEvent& event, int64 id) {
45 scoped_ptr<ProtocolEvent> e1(MakeTestEvent(1));
46 scoped_ptr<ProtocolEvent> e2(MakeTestEvent(2));
51 ScopedVector<ProtocolEvent> buffered_events(
61 scoped_ptr<ProtocolEvent> e(MakeTestEvent(static_cast<int64>(i)));
65 ScopedVector<ProtocolEvent> buffered_event
[all...]
/external/chromium_org/sync/internal_api/public/events/
H A Dprotocol_event.h29 class SYNC_EXPORT ProtocolEvent { class in namespace:syncer
31 ProtocolEvent();
32 virtual ~ProtocolEvent();
49 virtual scoped_ptr<ProtocolEvent> Clone() const = 0;
52 // ProtocolEvent's interface into a single DictionaryValue.
54 const ProtocolEvent& event);
H A Dcommit_request_event.h21 class SYNC_EXPORT_PRIVATE CommitRequestEvent : public ProtocolEvent {
34 virtual scoped_ptr<ProtocolEvent> Clone() const OVERRIDE;
37 const ProtocolEvent& event);
H A Dcommit_response_event.h21 class SYNC_EXPORT_PRIVATE CommitResponseEvent : public ProtocolEvent {
33 virtual scoped_ptr<ProtocolEvent> Clone() const OVERRIDE;
36 const ProtocolEvent& event);
H A Dconfigure_get_updates_request_event.h19 : public ProtocolEvent {
31 virtual scoped_ptr<ProtocolEvent> Clone() const OVERRIDE;
H A Dget_updates_response_event.h22 class SYNC_EXPORT_PRIVATE GetUpdatesResponseEvent : public ProtocolEvent {
35 virtual scoped_ptr<ProtocolEvent> Clone() const OVERRIDE;
H A Dpoll_get_updates_request_event.h23 class SYNC_EXPORT_PRIVATE PollGetUpdatesRequestEvent : public ProtocolEvent {
34 virtual scoped_ptr<ProtocolEvent> Clone() const OVERRIDE;
H A Dnormal_get_updates_request_event.h23 class SYNC_EXPORT_PRIVATE NormalGetUpdatesRequestEvent : public ProtocolEvent {
36 virtual scoped_ptr<ProtocolEvent> Clone() const OVERRIDE;
/external/chromium_org/chrome/browser/sync/
H A Dprotocol_event_observer.h9 class ProtocolEvent;
19 virtual void OnProtocolEvent(const syncer::ProtocolEvent& event) = 0;
/external/chromium_org/sync/engine/
H A Dsync_engine_event_listener.h16 class ProtocolEvent;
41 virtual void OnProtocolEvent(const ProtocolEvent& event) = 0;
H A Dget_updates_delegate.cc91 scoped_ptr<ProtocolEvent> NormalGetUpdatesDelegate::GetNetworkRequestEvent(
94 return scoped_ptr<ProtocolEvent>(
116 scoped_ptr<ProtocolEvent> ConfigureGetUpdatesDelegate::GetNetworkRequestEvent(
119 return scoped_ptr<ProtocolEvent>(
168 scoped_ptr<ProtocolEvent> PollGetUpdatesDelegate::GetNetworkRequestEvent(
171 return scoped_ptr<ProtocolEvent>(
H A Dget_updates_delegate.h37 virtual scoped_ptr<ProtocolEvent> GetNetworkRequestEvent(
58 virtual scoped_ptr<ProtocolEvent> GetNetworkRequestEvent(
88 virtual scoped_ptr<ProtocolEvent> GetNetworkRequestEvent(
116 virtual scoped_ptr<ProtocolEvent> GetNetworkRequestEvent(
/external/chromium_org/components/sync_driver/
H A Dsync_frontend.h18 class ProtocolEvent;
67 virtual void OnProtocolEvent(const syncer::ProtocolEvent& event) = 0;
/external/chromium_org/sync/sessions/
H A Dsync_session.h33 class ProtocolEvent;
113 void SendProtocolEvent(const ProtocolEvent& event);
/external/chromium_org/sync/internal_api/public/
H A Dsync_manager.h54 class ProtocolEvent;
218 virtual void OnProtocolEvent(const ProtocolEvent& event) = 0;
383 virtual ScopedVector<syncer::ProtocolEvent> GetBufferedProtocolEvents() = 0;
/external/chromium_org/chrome/browser/ui/webui/
H A Dsync_internals_message_handler.h63 virtual void OnProtocolEvent(const syncer::ProtocolEvent& e) OVERRIDE;

Completed in 3485 milliseconds

12