/external/chromium_org/sync/internal_api/ |
D | protocol_event_buffer_unittest.cc | 21 static scoped_ptr<ProtocolEvent> MakeTestEvent(int64 id); 22 static bool HasId(const ProtocolEvent& event, int64 id); 32 scoped_ptr<ProtocolEvent> ProtocolEventBufferTest::MakeTestEvent(int64 id) { in MakeTestEvent() 34 return scoped_ptr<ProtocolEvent>( in MakeTestEvent() 40 bool ProtocolEventBufferTest::HasId(const ProtocolEvent& event, int64 id) { in HasId() 45 scoped_ptr<ProtocolEvent> e1(MakeTestEvent(1)); in TEST_F() 46 scoped_ptr<ProtocolEvent> e2(MakeTestEvent(2)); in TEST_F() 51 ScopedVector<ProtocolEvent> buffered_events( in TEST_F() 61 scoped_ptr<ProtocolEvent> e(MakeTestEvent(static_cast<int64>(i))); in TEST_F() 65 ScopedVector<ProtocolEvent> buffered_events( in TEST_F()
|
D | protocol_event_buffer.h | 15 class ProtocolEvent; variable 28 void RecordProtocolEvent(const ProtocolEvent& event); 31 ScopedVector<ProtocolEvent> GetBufferedProtocolEvents() const; 34 std::deque<ProtocolEvent*> buffer_; 35 STLElementDeleter<std::deque<ProtocolEvent*> > buffer_deleter_;
|
D | protocol_event_buffer.cc | 18 void ProtocolEventBuffer::RecordProtocolEvent(const ProtocolEvent& event) { in RecordProtocolEvent() 21 ProtocolEvent* to_delete = buffer_.front(); in RecordProtocolEvent() 27 ScopedVector<ProtocolEvent> 29 ScopedVector<ProtocolEvent> ret; in GetBufferedProtocolEvents() 30 for (std::deque<ProtocolEvent*>::const_iterator it = buffer_.begin(); in GetBufferedProtocolEvents()
|
/external/chromium_org/sync/internal_api/events/ |
D | protocol_event.cc | 9 ProtocolEvent::ProtocolEvent() {} in ProtocolEvent() function in syncer::ProtocolEvent 11 ProtocolEvent::~ProtocolEvent() {} in ~ProtocolEvent() 13 scoped_ptr<base::DictionaryValue> ProtocolEvent::ToValue( in ToValue() 14 const ProtocolEvent& event) { in ToValue()
|
D | poll_get_updates_request_event.cc | 37 scoped_ptr<ProtocolEvent> PollGetUpdatesRequestEvent::Clone() const { in Clone() 38 return scoped_ptr<ProtocolEvent>( in Clone()
|
D | commit_response_event.cc | 39 scoped_ptr<ProtocolEvent> CommitResponseEvent::Clone() const { in Clone() 40 return scoped_ptr<ProtocolEvent>( in Clone()
|
D | configure_get_updates_request_event.cc | 41 scoped_ptr<ProtocolEvent> ConfigureGetUpdatesRequestEvent::Clone() const { in Clone() 42 return scoped_ptr<ProtocolEvent>( in Clone()
|
D | commit_request_event.cc | 46 scoped_ptr<ProtocolEvent> CommitRequestEvent::Clone() const { in Clone() 47 return scoped_ptr<ProtocolEvent>( in Clone()
|
D | get_updates_response_event.cc | 51 scoped_ptr<ProtocolEvent> GetUpdatesResponseEvent::Clone() const { in Clone() 52 return scoped_ptr<ProtocolEvent>( in Clone()
|
D | normal_get_updates_request_event.cc | 76 scoped_ptr<ProtocolEvent> NormalGetUpdatesRequestEvent::Clone() const { in Clone() 77 return scoped_ptr<ProtocolEvent>( in Clone()
|
/external/chromium_org/sync/internal_api/public/events/ |
D | protocol_event.h | 29 class SYNC_EXPORT ProtocolEvent { 31 ProtocolEvent(); 32 virtual ~ProtocolEvent(); 49 virtual scoped_ptr<ProtocolEvent> Clone() const = 0; 54 const ProtocolEvent& event);
|
D | commit_response_event.h | 21 class SYNC_EXPORT_PRIVATE CommitResponseEvent : public ProtocolEvent { 33 virtual scoped_ptr<ProtocolEvent> Clone() const OVERRIDE; 36 const ProtocolEvent& event);
|
D | commit_request_event.h | 21 class SYNC_EXPORT_PRIVATE CommitRequestEvent : public ProtocolEvent { 34 virtual scoped_ptr<ProtocolEvent> Clone() const OVERRIDE; 37 const ProtocolEvent& event);
|
D | poll_get_updates_request_event.h | 23 class SYNC_EXPORT_PRIVATE PollGetUpdatesRequestEvent : public ProtocolEvent { 34 virtual scoped_ptr<ProtocolEvent> Clone() const OVERRIDE;
|
D | get_updates_response_event.h | 22 class SYNC_EXPORT_PRIVATE GetUpdatesResponseEvent : public ProtocolEvent { 35 virtual scoped_ptr<ProtocolEvent> Clone() const OVERRIDE;
|
D | configure_get_updates_request_event.h | 19 : public ProtocolEvent { 31 virtual scoped_ptr<ProtocolEvent> Clone() const OVERRIDE;
|
D | normal_get_updates_request_event.h | 23 class SYNC_EXPORT_PRIVATE NormalGetUpdatesRequestEvent : public ProtocolEvent { 36 virtual scoped_ptr<ProtocolEvent> Clone() const OVERRIDE;
|
/external/chromium_org/sync/engine/ |
D | get_updates_delegate.cc | 91 scoped_ptr<ProtocolEvent> NormalGetUpdatesDelegate::GetNetworkRequestEvent( in GetNetworkRequestEvent() 94 return scoped_ptr<ProtocolEvent>( in GetNetworkRequestEvent() 116 scoped_ptr<ProtocolEvent> ConfigureGetUpdatesDelegate::GetNetworkRequestEvent( in GetNetworkRequestEvent() 119 return scoped_ptr<ProtocolEvent>( in GetNetworkRequestEvent() 168 scoped_ptr<ProtocolEvent> PollGetUpdatesDelegate::GetNetworkRequestEvent( in GetNetworkRequestEvent() 171 return scoped_ptr<ProtocolEvent>( in GetNetworkRequestEvent()
|
D | get_updates_delegate.h | 37 virtual scoped_ptr<ProtocolEvent> GetNetworkRequestEvent( 58 virtual scoped_ptr<ProtocolEvent> GetNetworkRequestEvent( 88 virtual scoped_ptr<ProtocolEvent> GetNetworkRequestEvent( 116 virtual scoped_ptr<ProtocolEvent> GetNetworkRequestEvent(
|
D | sync_engine_event_listener.h | 16 class ProtocolEvent; variable 41 virtual void OnProtocolEvent(const ProtocolEvent& event) = 0;
|
/external/chromium_org/chrome/browser/sync/ |
D | protocol_event_observer.h | 9 class ProtocolEvent; variable 19 virtual void OnProtocolEvent(const syncer::ProtocolEvent& event) = 0;
|
/external/chromium_org/components/sync_driver/ |
D | sync_frontend.h | 18 class ProtocolEvent; variable 67 virtual void OnProtocolEvent(const syncer::ProtocolEvent& event) = 0;
|
/external/chromium_org/sync/sessions/ |
D | sync_session.h | 33 class ProtocolEvent; variable 113 void SendProtocolEvent(const ProtocolEvent& event);
|
/external/chromium_org/sync/internal_api/public/ |
D | sync_manager.h | 54 class ProtocolEvent; variable 218 virtual void OnProtocolEvent(const ProtocolEvent& event) = 0; 383 virtual ScopedVector<syncer::ProtocolEvent> GetBufferedProtocolEvents() = 0;
|
/external/chromium_org/sync/internal_api/test/ |
D | fake_sync_manager.cc | 219 ScopedVector<syncer::ProtocolEvent> 221 return ScopedVector<syncer::ProtocolEvent>(); in GetBufferedProtocolEvents()
|