Searched defs:observer_id (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/chrome/browser/automation/
H A Dautomation_event_observers.cc34 value->SetInteger("observer_id", GetId());
44 void AutomationEventObserver::Init(int observer_id) { argument
45 observer_id_ = observer_id;
73 void DomEventObserver::Init(int observer_id) { argument
74 AutomationEventObserver::Init(observer_id);
75 std::string id_string = base::StringPrintf("%d", observer_id);
H A Dautomation_event_queue.cc30 int observer_id, DictionaryValue* event_value)
31 : observer_id_(observer_id), event_value_(event_value) {}
34 int observer_id,
37 wait_observer_id_ = observer_id;
63 int observer_id) {
67 CompareObserverId(observer_id));
90 bool AutomationEventQueue::RemoveObserver(int observer_id) { argument
91 if (observers_.find(observer_id) != observers_.end()) {
92 VLOG(2) << "AutomationEventQueue::RemoveObserver id=" << observer_id;
93 delete observers_[observer_id];
29 AutomationEvent( int observer_id, DictionaryValue* event_value) argument
33 GetNextEvent(AutomationJSONReply* reply, int observer_id, bool blocking) argument
62 PopEvent( int observer_id) argument
[all...]
H A Dtesting_automation_provider_chromeos.cc241 int observer_id = automation_event_queue_->AddObserver( local
246 return_value.SetInteger("observer_id", observer_id);

Completed in 70 milliseconds