HomeSort by relevance Sort by last modified time
    Searched refs:ProtocolEvent (Results 1 - 25 of 50) sorted by null

1 2

  /external/chromium_org/sync/internal_api/
protocol_event_buffer.h 15 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_;
protocol_event_buffer.cc 18 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();
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) {
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_events
    [all...]
js_sync_manager_observer.h 45 virtual void OnProtocolEvent(const ProtocolEvent& event) OVERRIDE;
  /external/chromium_org/sync/internal_api/public/events/
protocol_event.h 29 class SYNC_EXPORT ProtocolEvent {
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);
commit_response_event.h 21 class SYNC_EXPORT_PRIVATE CommitResponseEvent : public ProtocolEvent {
33 virtual scoped_ptr<ProtocolEvent> Clone() const OVERRIDE;
36 const ProtocolEvent& event);
commit_request_event.h 21 class SYNC_EXPORT_PRIVATE CommitRequestEvent : public ProtocolEvent {
34 virtual scoped_ptr<ProtocolEvent> Clone() const OVERRIDE;
37 const ProtocolEvent& event);
configure_get_updates_request_event.h 19 : public ProtocolEvent {
31 virtual scoped_ptr<ProtocolEvent> Clone() const OVERRIDE;
get_updates_response_event.h 22 class SYNC_EXPORT_PRIVATE GetUpdatesResponseEvent : public ProtocolEvent {
35 virtual scoped_ptr<ProtocolEvent> Clone() const OVERRIDE;
poll_get_updates_request_event.h 23 class SYNC_EXPORT_PRIVATE PollGetUpdatesRequestEvent : public ProtocolEvent {
34 virtual scoped_ptr<ProtocolEvent> Clone() const OVERRIDE;
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/internal_api/events/
protocol_event.cc 9 ProtocolEvent::ProtocolEvent() {}
11 ProtocolEvent::~ProtocolEvent() {}
13 scoped_ptr<base::DictionaryValue> ProtocolEvent::ToValue(
14 const ProtocolEvent& event) {
commit_response_event.cc 39 scoped_ptr<ProtocolEvent> CommitResponseEvent::Clone() const {
40 return scoped_ptr<ProtocolEvent>(
poll_get_updates_request_event.cc 37 scoped_ptr<ProtocolEvent> PollGetUpdatesRequestEvent::Clone() const {
38 return scoped_ptr<ProtocolEvent>(
commit_request_event.cc 46 scoped_ptr<ProtocolEvent> CommitRequestEvent::Clone() const {
47 return scoped_ptr<ProtocolEvent>(
configure_get_updates_request_event.cc 41 scoped_ptr<ProtocolEvent> ConfigureGetUpdatesRequestEvent::Clone() const {
42 return scoped_ptr<ProtocolEvent>(
get_updates_response_event.cc 51 scoped_ptr<ProtocolEvent> GetUpdatesResponseEvent::Clone() const {
52 return scoped_ptr<ProtocolEvent>(
normal_get_updates_request_event.cc 76 scoped_ptr<ProtocolEvent> NormalGetUpdatesRequestEvent::Clone() const {
77 return scoped_ptr<ProtocolEvent>(
  /external/chromium_org/chrome/browser/sync/
protocol_event_observer.h 9 class ProtocolEvent;
19 virtual void OnProtocolEvent(const syncer::ProtocolEvent& event) = 0;
  /external/chromium_org/sync/engine/
sync_engine_event_listener.h 16 class ProtocolEvent;
41 virtual void OnProtocolEvent(const ProtocolEvent& event) = 0;
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(
get_updates_delegate.cc 91 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>(
  /external/chromium_org/components/sync_driver/
sync_frontend.h 18 class ProtocolEvent;
67 virtual void OnProtocolEvent(const syncer::ProtocolEvent& event) = 0;
  /external/chromium_org/sync/sessions/
sync_session.h 33 class ProtocolEvent;
113 void SendProtocolEvent(const ProtocolEvent& event);
  /external/chromium_org/sync/internal_api/public/
sync_manager.h 54 class ProtocolEvent;
218 virtual void OnProtocolEvent(const ProtocolEvent& event) = 0;
383 virtual ScopedVector<syncer::ProtocolEvent> GetBufferedProtocolEvents() = 0;

Completed in 379 milliseconds

1 2