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

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/core/page/
Location.h 41 class DOMWindow;
50 void setHref(DOMWindow* activeWindow, DOMWindow* firstWindow, const String&);
53 void assign(DOMWindow* activeWindow, DOMWindow* firstWindow, const String&);
54 void replace(DOMWindow* activeWindow, DOMWindow* firstWindow, const String&);
55 void reload(DOMWindow* activeWindow);
57 void setProtocol(DOMWindow* activeWindow, DOMWindow* firstWindow, const String&, ExceptionState&)
    [all...]
DOMWindowPagePopup.h 38 class DOMWindow;
42 class DOMWindowPagePopup : public Supplement<DOMWindow> {
44 static PagePopupController* pagePopupController(DOMWindow*);
45 static void install(DOMWindow*, PagePopupClient*);
46 static void uninstall(DOMWindow*);
DOMWindowProperty.h 31 class DOMWindow;
47 DOMWindow* m_associatedDOMWindow;
DeviceController.h 31 #include "core/page/DOMWindow.h"
46 void addDeviceEventListener(DOMWindow*);
47 void removeDeviceEventListener(DOMWindow*);
48 void removeAllDeviceEventListeners(DOMWindow*);
60 HashCountedSet<DOMWindow*> m_listeners;
61 HashCountedSet<DOMWindow*> m_lastEventListeners;
CreateWindow.h 30 #include "core/page/DOMWindow.h"
38 DOMWindow* activeWindow, Frame* firstFrame, Frame* openerFrame, DOMWindow::PrepareDialogFunction = 0, void* functionContext = 0);
DOMWindow.cpp 28 #include "core/page/DOMWindow.h"
108 PostMessageTimer(DOMWindow* window, PassRefPtr<SerializedScriptValue> message, const String& sourceOrigin, PassRefPtr<DOMWindow> source, PassOwnPtr<MessagePortChannelArray> channels, SecurityOrigin* targetOrigin, PassRefPtr<ScriptCallStack> stackTrace)
134 RefPtr<DOMWindow> m_window;
137 RefPtr<DOMWindow> m_source;
143 typedef HashCountedSet<DOMWindow*> DOMWindowSet;
157 static void addUnloadEventListener(DOMWindow* domWindow)
162 set.add(domWindow);
165 static void removeUnloadEventListener(DOMWindow* domWindow
    [all...]
Location.cpp 36 #include "core/page/DOMWindow.h"
148 void Location::setHref(DOMWindow* activeWindow, DOMWindow* firstWindow, const String& url)
155 void Location::setProtocol(DOMWindow* activeWindow, DOMWindow* firstWindow, const String& protocol, ExceptionState& es)
167 void Location::setHost(DOMWindow* activeWindow, DOMWindow* firstWindow, const String& host)
176 void Location::setHostname(DOMWindow* activeWindow, DOMWindow* firstWindow, const String& hostname)
185 void Location::setPort(DOMWindow* activeWindow, DOMWindow* firstWindow, const String& portString
    [all...]
DOMWindow.h 82 class DOMWindow : public RefCounted<DOMWindow>, public ScriptWrappable, public EventTarget, public FrameDestructionObserver, public Supplementable<DOMWindow> {
84 static PassRefPtr<DOMWindow> create(Frame* frame) { return adoptRef(new DOMWindow(frame)); }
85 virtual ~DOMWindow();
87 // In some rare cases, we'll re-used a DOMWindow for a new Document. For example,
92 // "securely transition" the existing DOMWindow to the Document that results from
99 virtual DOMWindow* toDOMWindow();
131 void setLocation(const String& location, DOMWindow* activeWindow, DOMWindow* firstWindow
    [all...]
DeviceController.cpp 37 Vector<RefPtr<DOMWindow> > copyKeysToReferencingVector(const HashCountedSet<DOMWindow*>& set)
39 Vector<RefPtr<DOMWindow> > vector;
42 HashCountedSet<DOMWindow*>::const_iterator end= set.end();
43 for (HashCountedSet<DOMWindow*>::const_iterator it = set.begin(); it != end; ++it)
55 void DeviceController::addDeviceEventListener(DOMWindow* window)
70 void DeviceController::removeDeviceEventListener(DOMWindow* window)
78 void DeviceController::removeAllDeviceEventListeners(DOMWindow* window)
89 Vector<RefPtr<DOMWindow> > listenerVector = copyKeysToReferencingVector(m_listeners);
104 Vector<RefPtr<DOMWindow> > listenerVector = copyKeysToReferencingVector(m_lastEventListeners)
    [all...]
DOMWindowPagePopup.cpp 34 #include "core/page/DOMWindow.h"
55 PagePopupController* DOMWindowPagePopup::pagePopupController(DOMWindow* window)
62 void DOMWindowPagePopup::install(DOMWindow* window, PagePopupClient* popupClient)
69 void DOMWindowPagePopup::uninstall(DOMWindow* window)
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
DOMWindowIndexedDatabase.h 35 class DOMWindow;
37 class DOMWindowIndexedDatabase : public DOMWindowProperty, public Supplement<DOMWindow> {
40 static DOMWindowIndexedDatabase* from(DOMWindow*);
42 static IDBFactory* indexedDB(DOMWindow*);
48 explicit DOMWindowIndexedDatabase(DOMWindow*);
53 DOMWindow* m_window;
  /external/chromium_org/third_party/WebKit/Source/modules/crypto/
DOMWindowCrypto.h 40 class DOMWindow;
42 class DOMWindowCrypto : public Supplement<DOMWindow>, public DOMWindowProperty {
45 static DOMWindowCrypto* from(DOMWindow*);
46 static Crypto* crypto(DOMWindow*);
50 explicit DOMWindowCrypto(DOMWindow*);
DOMWindowCrypto.cpp 34 #include "core/page/DOMWindow.h"
40 DOMWindowCrypto::DOMWindowCrypto(DOMWindow* window)
54 DOMWindowCrypto* DOMWindowCrypto::from(DOMWindow* window)
56 DOMWindowCrypto* supplement = static_cast<DOMWindowCrypto*>(Supplement<DOMWindow>::from(window, supplementName()));
64 Crypto* DOMWindowCrypto::crypto(DOMWindow* window)
  /external/chromium_org/third_party/WebKit/Source/modules/quota/
DOMWindowQuota.h 39 class DOMWindow;
42 class DOMWindowQuota : public Supplement<DOMWindow>, public DOMWindowProperty {
45 static DOMWindowQuota* from(DOMWindow*);
46 static StorageInfo* webkitStorageInfo(DOMWindow*);
50 explicit DOMWindowQuota(DOMWindow*);
DOMWindowQuota.cpp 35 #include "core/page/DOMWindow.h"
43 DOMWindowQuota::DOMWindowQuota(DOMWindow* window)
58 DOMWindowQuota* DOMWindowQuota::from(DOMWindow* window)
60 DOMWindowQuota* supplement = static_cast<DOMWindowQuota*>(Supplement<DOMWindow>::from(window, supplementName()));
69 StorageInfo* DOMWindowQuota::webkitStorageInfo(DOMWindow* window)
  /external/chromium_org/third_party/WebKit/Source/modules/speech/
DOMWindowSpeechSynthesis.h 35 class DOMWindow;
37 class DOMWindowSpeechSynthesis : public Supplement<DOMWindow>, public DOMWindowProperty {
41 static SpeechSynthesis* speechSynthesis(DOMWindow*);
42 static DOMWindowSpeechSynthesis* from(DOMWindow*);
45 explicit DOMWindowSpeechSynthesis(DOMWindow*);
DOMWindowSpeechSynthesis.cpp 34 #include "core/page/DOMWindow.h"
39 DOMWindowSpeechSynthesis::DOMWindowSpeechSynthesis(DOMWindow* window)
54 DOMWindowSpeechSynthesis* DOMWindowSpeechSynthesis::from(DOMWindow* window)
56 DOMWindowSpeechSynthesis* supplement = static_cast<DOMWindowSpeechSynthesis*>(Supplement<DOMWindow>::from(window, supplementName()));
65 SpeechSynthesis* DOMWindowSpeechSynthesis::speechSynthesis(DOMWindow* window)
  /external/chromium_org/third_party/WebKit/Source/modules/notifications/
DOMWindowNotifications.h 38 class DOMWindow;
41 class DOMWindowNotifications : public Supplement<DOMWindow>, public DOMWindowProperty {
45 static NotificationCenter* webkitNotifications(DOMWindow*);
46 static DOMWindowNotifications* from(DOMWindow*);
52 explicit DOMWindowNotifications(DOMWindow*);
57 DOMWindow* m_window;
DOMWindowNotifications.cpp 33 #include "core/page/DOMWindow.h"
40 DOMWindowNotifications::DOMWindowNotifications(DOMWindow* window)
55 DOMWindowNotifications* DOMWindowNotifications::from(DOMWindow* window)
57 DOMWindowNotifications* supplement = static_cast<DOMWindowNotifications*>(Supplement<DOMWindow>::from(window, supplementName()));
60 Supplement<DOMWindow>::provideTo(window, supplementName(), adoptPtr(supplement));
65 NotificationCenter* DOMWindowNotifications::webkitNotifications(DOMWindow* window)
  /external/chromium_org/third_party/WebKit/Source/core/dom/
WindowEventContext.h 34 class DOMWindow;
44 DOMWindow* window() const;
49 RefPtr<DOMWindow> m_window;
53 inline DOMWindow* WindowEventContext::window() const
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
DOMWindowFileSystem.h 34 class DOMWindow;
41 static void webkitRequestFileSystem(DOMWindow*, int type, long long size, PassRefPtr<FileSystemCallback>, PassRefPtr<ErrorCallback>);
42 static void webkitResolveLocalFileSystemURL(DOMWindow*, const String&, PassRefPtr<EntryCallback>, PassRefPtr<ErrorCallback>);
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
DOMWindowWebDatabase.h 37 class DOMWindow;
45 static PassRefPtr<Database> openDatabase(DOMWindow*, const String& name, const String& version, const String& displayName, unsigned long estimatedSize, PassRefPtr<DatabaseCallback> creationCallback, ExceptionState&);
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
NPV8Object.h 42 class DOMWindow;
56 DOMWindow* rootObject;
67 NPObject* npCreateV8ScriptObject(NPP, v8::Handle<v8::Object>, DOMWindow*);
BindingSecurity.h 38 class DOMWindow;
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8DocumentLocationCustom.cpp 29 #include "core/page/DOMWindow.h"
43 DOMWindow* window = document->domWindow();
53 DOMWindow* active = activeDOMWindow();
57 DOMWindow* first = firstDOMWindow();
61 DOMWindow* window = document->domWindow();

Completed in 196 milliseconds

1 2 3 4