/external/webkit/Source/WebCore/storage/ |
StorageEvent.cpp | 27 #include "StorageEvent.h" 35 PassRefPtr<StorageEvent> StorageEvent::create() 37 return adoptRef(new StorageEvent); 40 StorageEvent::StorageEvent() 44 StorageEvent::~StorageEvent() 48 PassRefPtr<StorageEvent> StorageEvent::create(const AtomicString& type, const String& key, const String& oldValue, const String& newValu (…) [all...] |
StorageEvent.h | 38 class StorageEvent : public Event { 40 static PassRefPtr<StorageEvent> create(); 41 static PassRefPtr<StorageEvent> create(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea); 42 virtual ~StorageEvent(); 58 StorageEvent(); 59 StorageEvent(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea);
|
StorageEvent.idl | 30 ] StorageEvent : Event {
|
StorageEventDispatcher.cpp | 37 #include "StorageEvent.h" 65 frames[i]->document()->enqueueWindowEvent(StorageEvent::create(eventNames().storageEvent, key, oldValue, newValue, sourceFrame->document()->url(), storage)); 82 frames[i]->document()->enqueueWindowEvent(StorageEvent::create(eventNames().storageEvent, key, oldValue, newValue, sourceFrame->document()->url(), storage));
|
/frameworks/base/core/java/android/os/storage/ |
StorageManager.java | 155 StorageEvent e = (StorageEvent) msg.obj; 157 if (msg.what == StorageEvent.EVENT_OBB_STATE_CHANGED) { 183 private class ObbStateChangedStorageEvent extends StorageEvent { 199 private class StorageEvent { 206 public StorageEvent(int what) { 220 private class UmsConnectionChangedStorageEvent extends StorageEvent { 232 private class StorageStateChangedStorageEvent extends StorageEvent { 257 StorageEvent e = (StorageEvent) msg.obj [all...] |
/external/webkit/Source/WebCore/inspector/ |
InspectorDOMStorageResource.cpp | 43 #include "StorageEvent.h" 85 m_frame->domWindow()->removeEventListener(eventNames().storageEvent, this, true); 95 m_frame->domWindow()->addEventListener(eventNames().storageEvent, this, true); 103 if (event->type() != eventNames().storageEvent || !event->isStorageEvent()) 106 StorageEvent* storageEvent = static_cast<StorageEvent*>(event); 107 Storage* storage = storageEvent->storageArea();
|
/external/webkit/Source/WebKit/chromium/src/ |
StorageEventDispatcherImpl.cpp | 43 #include "StorageEvent.h" 78 frames[i]->document()->dispatchWindowEvent(StorageEvent::create(eventNames().storageEvent, key, oldValue, newValue, url, storage));
|
StorageAreaProxy.cpp | 41 #include "StorageEvent.h" 84 storageEvent(key, oldValue, value, m_storageType, frame->document()->securityOrigin(), frame); 93 storageEvent(key, oldValue, String(), m_storageType, frame->document()->securityOrigin(), frame); 102 storageEvent(String(), String(), String(), m_storageType, frame->document()->securityOrigin(), frame); 112 void StorageAreaProxy::storageEvent(const String& key, const String& oldValue, const String& newValue, StorageType storageType, SecurityOrigin* securityOrigin, Frame* sourceFrame) 132 frames[i]->document()->enqueueWindowEvent(StorageEvent::create(eventNames().storageEvent, key, oldValue, newValue, sourceFrame->document()->url(), storage)); 149 frames[i]->document()->enqueueWindowEvent(StorageEvent::create(eventNames().storageEvent, key, oldValue, newValue, sourceFrame->document()->url(), storage));
|
/external/webkit/Source/WebCore/bindings/js/ |
JSEventCustom.cpp | 83 #include "StorageEvent.h" 166 wrapper = CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, StorageEvent, event);
|
/external/webkit/Source/WebCore/bindings/v8/custom/ |
V8EventCustom.cpp | 156 return toV8(static_cast<StorageEvent*>(impl));
|
/external/webkit/Source/WebCore/page/ |
DOMWindow.idl | 597 attribute StorageEventConstructor StorageEvent; [all...] |
/external/webkit/Source/WebCore/ |
Android.mk | [all...] |
/external/webkit/Source/WebCore/dom/ |
Document.cpp | 165 #include "StorageEvent.h" [all...] |