HomeSort by relevance Sort by last modified time
    Searched refs:ScriptState (Results 76 - 100 of 252) sorted by null

1 2 34 5 6 7 8 91011

  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8CustomElementLifecycleCallbacks.h 35 #include "bindings/v8/ScriptState.h"
51 static PassRefPtr<V8CustomElementLifecycleCallbacks> create(ScriptState*, v8::Handle<v8::Object> prototype, v8::Handle<v8::Function> created, v8::Handle<v8::Function> attached, v8::Handle<v8::Function> detached, v8::Handle<v8::Function> attributeChanged);
58 V8CustomElementLifecycleCallbacks(ScriptState*, v8::Handle<v8::Object> prototype, v8::Handle<v8::Function> created, v8::Handle<v8::Function> attached, v8::Handle<v8::Function> detached, v8::Handle<v8::Function> attributeChanged);
70 RefPtr<ScriptState> m_scriptState;
V8EventListenerList.h 50 static PassRefPtr<V8EventListener> findWrapper(v8::Local<v8::Value> value, ScriptState* scriptState)
52 ASSERT(scriptState->isolate()->InContext());
56 v8::Handle<v8::String> wrapperProperty = getHiddenProperty(false, scriptState->isolate());
57 return doFindWrapper(v8::Local<v8::Object>::Cast(value), wrapperProperty, scriptState);
61 static PassRefPtr<V8EventListener> findOrCreateWrapper(v8::Local<v8::Value>, bool isAttribute, ScriptState*);
69 static PassRefPtr<EventListener> getEventListener(ScriptState*, v8::Local<v8::Value>, bool isAttribute, ListenerLookupType);
72 static V8EventListener* doFindWrapper(v8::Local<v8::Object> object, v8::Handle<v8::String> wrapperProperty, ScriptState* scriptState)
74 v8::HandleScope scope(scriptState->isolate())
    [all...]
ScriptFunctionCall.cpp 35 #include "bindings/v8/ScriptState.h"
47 if (argument.scriptState() != m_scriptState) {
57 ScriptState::Scope scope(m_scriptState.get());
64 ScriptState::Scope scope(m_scriptState.get());
71 ScriptState::Scope scope(m_scriptState.get());
78 ScriptState::Scope scope(m_scriptState.get());
85 ScriptState::Scope scope(m_scriptState.get());
92 ScriptState::Scope scope(m_scriptState.get());
99 ScriptState::Scope scope(m_scriptState.get());
112 ScriptState::Scope scope(m_scriptState.get())
    [all...]
ScheduledAction.cpp 48 ScheduledAction::ScheduledAction(ScriptState* scriptState, v8::Handle<v8::Function> function, int argc, v8::Handle<v8::Value> argv[], v8::Isolate* isolate)
49 : m_scriptState(scriptState)
59 ScheduledAction::ScheduledAction(ScriptState* scriptState, const String& code, const KURL& url, v8::Isolate* isolate)
60 : m_scriptState(scriptState)
90 ScriptState::Scope scope(m_scriptState.get());
107 ScriptState::Scope scope(m_scriptState.get());
ScriptEventListener.h 50 ScriptState* eventListenerHandlerScriptState(LocalFrame*, EventListener*);
ScriptPreprocessor.h 55 RefPtr<ScriptState> m_scriptState;
ScriptValue.h 34 #include "bindings/v8/ScriptState.h"
55 ScriptValue(ScriptState* scriptState, v8::Handle<v8::Value> value)
56 : m_isolate(scriptState->isolate())
57 , m_scriptState(scriptState)
58 , m_value(value.IsEmpty() ? nullptr : SharedPersistent<v8::Value>::create(value, scriptState->isolate()))
71 ScriptState* scriptState() const
152 PassRefPtr<JSONValue> toJSONValue(ScriptState*) const;
156 mutable RefPtr<ScriptState> m_scriptState
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ExecutionContextClient.h 45 class ScriptState;
59 virtual void addMessage(MessageSource, MessageLevel, const String& message, const String& sourceURL, unsigned lineNumber, ScriptState*) = 0;
69 void addConsoleMessage(MessageSource source, MessageLevel level, const String& message, ScriptState* state = 0) { addMessage(source, level, message, String(), 0, state); }
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
ConsoleMessage.h 34 #include "bindings/v8/ScriptState.h"
54 ConsoleMessage(bool canGenerateCallStack, MessageSource, MessageType, MessageLevel, const String& message, const String& url, unsigned line, unsigned column, ScriptState*, unsigned long requestIdentifier);
56 ConsoleMessage(bool canGenerateCallStack, MessageSource, MessageType, MessageLevel, const String& message, PassRefPtrWillBeRawPtr<ScriptArguments>, ScriptState*, unsigned long requestIdentifier);
69 void autogenerateMetadata(bool canGenerateCallStack, ScriptState* = 0);
InjectedScriptHost.h 33 #include "bindings/v8/ScriptState.h"
70 static Node* scriptValueAsNode(ScriptState*, ScriptValue);
71 static ScriptValue nodeAsScriptValue(ScriptState*, Node*);
78 virtual ScriptValue get(ScriptState*);
InspectorProfilerAgent.h 47 class ScriptState;
60 void consoleProfile(const String& title, ScriptState*);
61 void consoleProfileEnd(const String& title, ScriptState*);
InjectedScriptManager.cpp 88 int InjectedScriptManager::injectedScriptIdFor(ScriptState* scriptState)
90 ScriptStateToId::iterator it = m_scriptStateToId.find(scriptState);
94 m_scriptStateToId.set(scriptState, id);
124 ScriptState* scriptState = it->value.scriptState();
125 if (window != scriptState->domWindow())
127 m_scriptStateToId.remove(scriptState);
133 Vector<ScriptState*> scriptStatesToRemove
    [all...]
InspectorRuntimeAgent.h 45 class ScriptState;
95 void addExecutionContextToFrontend(ScriptState*, bool isPageContext, const String& name, const String& frameId);
100 typedef HashMap<RefPtr<ScriptState>, int> ScriptStateToId;
ScriptDebugListener.h 34 #include "bindings/v8/ScriptState.h"
76 virtual SkipPauseRequest didPause(ScriptState*, const ScriptValue& callFrames, const ScriptValue& exception, const Vector<String>& hitBreakpoints) = 0;
  /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
ServiceWorkerContainer.h 69 ScriptPromise ready(ScriptState*);
71 ScriptPromise registerServiceWorker(ScriptState*, const String& pattern, const Dictionary&);
72 ScriptPromise unregisterServiceWorker(ScriptState*, const String& scope = String());
  /external/chromium_org/third_party/WebKit/Source/modules/webmidi/
MIDIAccessInitializer.h 22 class ScriptState;
41 static ScriptPromise start(ScriptState* scriptState, const MIDIOptions& options)
43 RefPtr<MIDIAccessInitializer> p = adoptRef(new MIDIAccessInitializer(scriptState, options));
63 MIDIAccessInitializer(ScriptState*, const MIDIOptions&);
  /external/chromium_org/third_party/WebKit/Source/web/
InspectorFrontendClientImpl.cpp 66 ScriptState* scriptState = ScriptState::forMainWorld(m_frontendPage->deprecatedLocalMainFrame());
67 ScriptState::Scope scope(scriptState);
72 v8::Handle<v8::Object> global = scriptState->context()->Global();
73 v8::Handle<v8::Value> frontendHostObj = toV8(m_frontendHost.get(), global, scriptState->isolate());
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/results/
V8TestCallbackInterface.cpp 21 V8TestCallbackInterface::V8TestCallbackInterface(v8::Handle<v8::Function> callback, ScriptState* scriptState)
22 : ActiveDOMCallback(scriptState->executionContext())
23 , m_scriptState(scriptState)
25 m_callback.set(scriptState->isolate(), callback);
41 ScriptState::Scope scope(m_scriptState.get());
56 ScriptState::Scope scope(m_scriptState.get());
71 ScriptState::Scope scope(m_scriptState.get());
92 ScriptState::Scope scope(m_scriptState.get());
113 ScriptState::Scope scope(m_scriptState.get())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBFactory.cpp 78 IDBRequest* IDBFactory::getDatabaseNames(ScriptState* scriptState, ExceptionState& exceptionState)
81 if (!isContextValid(scriptState->executionContext()))
83 if (!scriptState->executionContext()->securityOrigin()->canAccessDatabase()) {
88 IDBRequest* request = IDBRequest::create(scriptState, IDBAny::createNull(), 0);
90 if (!m_permissionClient->allowIndexedDB(scriptState->executionContext(), "Database Listing")) {
95 blink::Platform::current()->idbFactory()->getDatabaseNames(WebIDBCallbacksImpl::create(request).leakPtr(), createDatabaseIdentifierFromSecurityOrigin(scriptState->executionContext()->securityOrigin()));
99 IDBOpenDBRequest* IDBFactory::open(ScriptState* scriptState, const String& name, unsigned long long version, ExceptionState& exceptionState)
106 return openInternal(scriptState, name, version, exceptionState)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/tests/
CustomEventTest.cpp 67 ScriptState::Scope scope(scriptState());
68 v8::Handle<v8::Value> jsEvent = toV8(event, scriptState()->context()->Global(), isolate());
70 EXPECT_EQ(jsEvent->ToObject()->Get(v8::String::NewFromUtf8(scriptState()->isolate(), "detail")), v8::Boolean::New(scriptState()->isolate(), true));
73 static PassRefPtr<TestListener> create(ScriptState* scriptState)
75 return adoptRef(new TestListener(scriptState));
79 TestListener(ScriptState* scriptState)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8InjectedScriptManager.cpp 76 ScriptValue InjectedScriptManager::createInjectedScript(const String& scriptSource, ScriptState* inspectedScriptState, int id)
79 ScriptState::Scope scope(inspectedScriptState);
104 bool InjectedScriptManager::canAccessInspectedWindow(ScriptState* scriptState)
106 ScriptState::Scope scope(scriptState);
107 v8::Local<v8::Object> global = scriptState->context()->Global();
110 v8::Handle<v8::Object> holder = V8Window::findInstanceInPrototypeChain(global, scriptState->isolate());
115 return BindingSecurity::shouldAllowAccessToFrame(scriptState->isolate(), frame, DoNotReportSecurityError);
  /external/chromium_org/third_party/WebKit/Source/core/css/
FontFace.idl 60 [CallWith=ScriptState] readonly attribute Promise loaded;
62 [CallWith=ScriptState] Promise load();
  /external/chromium_org/third_party/WebKit/Source/core/frame/
FrameConsole.h 32 #include "bindings/v8/ScriptState.h"
49 void addMessage(MessageSource, MessageLevel, const String& message, const String& sourceURL, unsigned lineNumber, unsigned columnNumber = 0, PassRefPtrWillBeRawPtr<ScriptCallStack> = nullptr, ScriptState* = 0, unsigned long requestIdentifier = 0);
  /external/chromium_org/third_party/WebKit/Source/modules/imagebitmap/
ImageBitmapFactories.cpp 69 static ScriptPromise fulfillImageBitmap(ScriptState* scriptState, PassRefPtrWillBeRawPtr<ImageBitmap> imageBitmap)
71 RefPtr<ScriptPromiseResolver> resolver = ScriptPromiseResolver::create(scriptState);
76 resolver->reject(ScriptValue(scriptState, v8::Null(scriptState->isolate())));
81 ScriptPromise ImageBitmapFactories::createImageBitmap(ScriptState* scriptState, EventTarget& eventTarget, HTMLImageElement* image, ExceptionState& exceptionState)
84 return createImageBitmap(scriptState, eventTarget, image, 0, 0, s.width(), s.height(), exceptionState);
87 ScriptPromise ImageBitmapFactories::createImageBitmap(ScriptState* scriptState, EventTarget& eventTarget, HTMLImageElement* image, int sx, int sy, int sw, int sh, ExceptionState (…)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/push_messaging/
PushManager.cpp 11 #include "bindings/v8/ScriptState.h"
31 ScriptPromise PushManager::registerPushMessaging(ScriptState* scriptState, const String& senderId)
33 ASSERT(scriptState->executionContext()->isDocument());
34 RefPtr<ScriptPromiseResolverWithContext> resolver = ScriptPromiseResolverWithContext::create(scriptState);
36 blink::WebPushClient* client = PushController::clientFrom(toDocument(scriptState->executionContext())->page());

Completed in 1047 milliseconds

1 2 34 5 6 7 8 91011