/external/chromium_org/net/proxy/ |
network_delegate_error_observer_unittest.cc | 100 NetworkDelegateErrorObserver observer( 105 base::Unretained(&observer), 117 NetworkDelegateErrorObserver observer( 122 base::Unretained(&observer),
|
/external/chromium_org/remoting/base/ |
url_request_context.cc | 39 virtual void AddObserver(Observer* observer) OVERRIDE {} 40 virtual void RemoveObserver(Observer* observer) OVERRIDE {}
|
/external/chromium_org/remoting/host/linux/ |
audio_pipe_reader.h | 48 // Register or unregister an observer. Each observer receives data on the 51 void AddObserver(StreamObserver* observer); 52 void RemoveObserver(StreamObserver* observer);
|
/external/chromium_org/remoting/host/win/ |
host_service.h | 41 WtsTerminalObserver* observer) OVERRIDE; 43 WtsTerminalObserver* observer) OVERRIDE; 96 // Points to the observer receiving notifications about the WTS terminal 98 WtsTerminalObserver* observer; member in struct:remoting::HostService::RegisteredObserver
|
/external/chromium_org/sync/internal_api/ |
debug_info_event_listener.h | 34 : public SyncManager::Observer, 35 public SyncEncryptionHandler::Observer, 42 // SyncManager::Observer implementation. 56 // SyncEncryptionHandler::Observer implementation.
|
/external/chromium_org/sync/internal_api/public/engine/ |
passive_model_worker.h | 22 WorkerLoopDestructionObserver* observer);
|
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/ |
V8MutationObserverCustom.cpp | 63 RefPtrWillBeRawPtr<MutationObserver> observer = MutationObserver::create(callback.release()); local 65 V8DOMWrapper::associateObjectWithWrapper<V8MutationObserver>(observer.release(), &wrapperTypeInfo, wrapper, info.GetIsolate(), WrapperConfiguration::Dependent); 71 MutationObserver* observer = static_cast<MutationObserver*>(object); local 72 HashSet<Node*> observedNodes = observer->getObservedNodes();
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
IdTargetObserverRegistry.cpp | 44 void IdTargetObserverRegistry::addObserver(const AtomicString& id, IdTargetObserver* observer) 53 result.storedValue->value->add(observer); 56 void IdTargetObserverRegistry::removeObserver(const AtomicString& id, IdTargetObserver* observer) 64 set->remove(observer);
|
MutationObserverRegistration.cpp | 40 PassOwnPtrWillBeRawPtr<MutationObserverRegistration> MutationObserverRegistration::create(MutationObserver& observer, Node* registrationNode, MutationObserverOptions options, const HashSet<AtomicString>& attributeFilter) 42 return adoptPtrWillBeNoop(new MutationObserverRegistration(observer, registrationNode, options, attributeFilter)); 45 MutationObserverRegistration::MutationObserverRegistration(MutationObserver& observer, Node* registrationNode, MutationObserverOptions options, const HashSet<AtomicString>& attributeFilter) 46 : m_observer(observer)
|
/external/chromium_org/third_party/WebKit/Source/core/dom/custom/ |
CustomElementRegistry.cpp | 55 // In oilpan we don't have the disposed phase for context lifecycle observer. 70 RegistrationContextObserver observer(document); 96 ASSERT(!observer.registrationContextWentAway()); 102 if (observer.registrationContextWentAway()) {
|
/external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/tools/ |
bwe_rtp.h | 30 webrtc::RemoteBitrateObserver* observer,
|
/external/chromium_org/third_party/webrtc/video/ |
encoded_frame_callback_adapter.h | 22 explicit EncodedFrameCallbackAdapter(EncodedFrameObserver* observer);
|
/external/chromium_org/third_party/webrtc/video_engine/ |
overuse_frame_detector.h | 56 // Registers an observer receiving overuse and underuse callbacks. Set 57 // 'observer' to NULL to disable callbacks. 58 void SetObserver(CpuOveruseObserver* observer); 113 // Observer getting overuse reports.
|
vie_capturer.h | 101 // Statistics observer. 102 int32_t RegisterObserver(ViECaptureObserver* observer); 109 void RegisterCpuOveruseObserver(CpuOveruseObserver* observer); 185 // Statistics observer.
|
/external/chromium_org/ui/app_list/cocoa/ |
apps_pagination_model_observer.h | 8 // Observer protocol for page changes. Compare with
|
/external/chromium_org/ui/base/ime/ |
input_method_base.cc | 92 void InputMethodBase::AddObserver(InputMethodObserver* observer) { 93 observer_list_.AddObserver(observer); 96 void InputMethodBase::RemoveObserver(InputMethodObserver* observer) { 97 observer_list_.RemoveObserver(observer);
|
/external/chromium_org/ui/base/models/ |
list_model.h | 82 void AddObserver(ListModelObserver* observer) { 83 observers_.AddObserver(observer); 86 void RemoveObserver(ListModelObserver* observer) { 87 observers_.RemoveObserver(observer);
|
/external/chromium_org/ui/gfx/animation/ |
animation_container_observer.h | 14 // The observer is notified after every update of the animations managed by
|
/external/chromium_org/ui/views/controls/table/ |
test_table_model.h | 20 virtual void SetObserver(ui::TableModelObserver* observer) OVERRIDE;
|
/external/chromium_org/ui/views/linux_ui/ |
window_button_order_observer.h | 14 // Observer interface to receive the ordering of the min,max,close buttons.
|
/external/chromium_org/ui/views/test/ |
test_widget_observer.h | 17 // A Widget observer class used in the tests below to observe bubbles closing.
|
/external/chromium_org/v8/test/mjsunit/es6/ |
microtask-delivery.js | 74 var observer = { 79 Object.observe(observer, function(records) { 81 observer.recordCounts.push(records.length); 85 return observer;
|
/external/chromium_org/webkit/browser/appcache/ |
appcache_group.h | 60 // Adds/removes an update observer, the AppCacheGroup does not take 61 // ownership of the observer. 62 void AddUpdateObserver(UpdateObserver* observer); 63 void RemoveUpdateObserver(UpdateObserver* observer);
|
/external/chromium_org/win8/metro_driver/ime/ |
input_source.cc | 115 virtual void AddObserver(InputSourceObserver* observer) OVERRIDE { 116 observer_list_.AddObserver(observer); 118 virtual void RemoveObserver(InputSourceObserver* observer) OVERRIDE { 119 observer_list_.RemoveObserver(observer);
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/database/ |
TestCursor.java | 163 public void registerContentObserver(ContentObserver observer) { 168 public void unregisterContentObserver(ContentObserver observer) { 173 public void registerDataSetObserver(DataSetObserver observer) { 178 public void unregisterDataSetObserver(DataSetObserver observer) {
|