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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/workers/
AbstractWorker.cpp 62 exceptionState.throwSecurityError("Script at '" + scriptURL.elidedString() + "' cannot be accessed from origin '" + executionContext()->securityOrigin()->toString() + "'.");
67 exceptionState.throwSecurityError("Access to the script at '" + scriptURL.elidedString() + "' is denied by the document's Content Security Policy.");
SharedWorker.cpp 74 exceptionState.throwSecurityError("Access to shared workers is denied to origin '" + document->securityOrigin()->toString() + "'.");
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ExceptionStatePlaceholder.h 50 virtual void throwSecurityError(const String& sanitizedMessage, const String& unsanitizedMessage = String()) OVERRIDE FINAL { }
67 virtual void throwSecurityError(const String& sanitizedMessage, const String& unsanitizedMessage = String()) OVERRIDE FINAL;
ExceptionStatePlaceholder.cpp 53 void NoExceptionStateAssertionChecker::throwSecurityError(const String&, const String&)
ExceptionState.cpp 51 // SecurityError is thrown via ::throwSecurityError, and _careful_ consideration must be given to the data exposed to JavaScript via the 'sanitizedMessage'.
59 void ExceptionState::throwSecurityError(const String& sanitizedMessage, const String& unsanitizedMessage)
96 void TrackExceptionState::throwSecurityError(const String&, const String&)
ExceptionState.h 82 virtual void throwSecurityError(const String& sanitizedMessage, const String& unsanitizedMessage = String());
130 virtual void throwSecurityError(const String& sanitizedMessage, const String& unsanitizedMessage = String()) OVERRIDE FINAL;
BindingSecurity.cpp 65 exceptionState.throwSecurityError(targetDocument->domWindow()->sanitizedCrossDomainAccessErrorMessage(activeWindow), targetDocument->domWindow()->crossDomainAccessErrorMessage(activeWindow));
V8Initializer.cpp 140 exceptionState.throwSecurityError(targetWindow->sanitizedCrossDomainAccessErrorMessage(activeDOMWindow()), targetWindow->crossDomainAccessErrorMessage(activeDOMWindow()));
  /external/chromium_org/third_party/WebKit/Source/web/
StorageAreaProxy.cpp 68 exceptionState.throwSecurityError("access is denied for this document.");
77 exceptionState.throwSecurityError("access is denied for this document.");
86 exceptionState.throwSecurityError("access is denied for this document.");
95 exceptionState.throwSecurityError("access is denied for this document.");
107 exceptionState.throwSecurityError("access is denied for this document.");
116 exceptionState.throwSecurityError("access is denied for this document.");
125 exceptionState.throwSecurityError("access is denied for this document.");
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
DOMWindowWebDatabase.cpp 58 exceptionState.throwSecurityError("Access to the WebDatabase API is denied in this context.");
WorkerGlobalScopeWebDatabase.cpp 57 exceptionState.throwSecurityError("Access to the WebDatabase API is denied in this context.");
75 exceptionState.throwSecurityError("Access to the WebDatabase API is denied in this context.");
DatabaseManager.cpp 168 exceptionState.throwSecurityError(errorMessage);
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBFactory.cpp 81 exceptionState.throwSecurityError("access to the Indexed Database API is denied in this context.");
117 exceptionState.throwSecurityError("access to the Indexed Database API is denied in this context.");
151 exceptionState.throwSecurityError("access to the Indexed Database API is denied in this context.");
  /external/chromium_org/third_party/WebKit/Source/modules/navigatorcontentutils/
NavigatorContentUtils.cpp 113 exceptionState.throwSecurityError("The scheme '" + scheme + "' is not a valid protocol.");
115 exceptionState.throwSecurityError("The scheme '" + scheme + "' is less than five characters long.");
121 exceptionState.throwSecurityError("The scheme '" + scheme + "' doesn't belong to the protocol whitelist. Please prefix non-whitelisted schemes with the string 'web+'.");
  /external/chromium_org/third_party/WebKit/Source/modules/notifications/
WebKitNotification.cpp 58 es.throwSecurityError("Notification permission has not been granted.");
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
WorkerGlobalScopeFileSystem.cpp 69 exceptionState.throwSecurityError(FileError::securityErrorMessage);
109 exceptionState.throwSecurityError(FileError::securityErrorMessage);
  /external/chromium_org/third_party/WebKit/Source/core/fileapi/
FileError.cpp 131 // SecurityError is special-cased, as we want to route those exceptions through ExceptionState::throwSecurityError.
133 exceptionState.throwSecurityError(FileError::securityErrorMessage);
  /external/chromium_org/third_party/WebKit/Source/core/frame/
History.cpp 134 exceptionState.throwSecurityError("A history state object with URL '" + fullURL.elidedString() + "' cannot be created in a document with origin '" + m_frame->document()->securityOrigin()->toString() + "'.");
DOMWindow.cpp 764 exceptionState.throwSecurityError("The document is sandboxed and lacks the 'allow-same-origin' flag.");
766 exceptionState.throwSecurityError("Storage is disabled inside 'data:' URLs.");
768 exceptionState.throwSecurityError(accessDeniedMessage);
774 exceptionState.throwSecurityError(accessDeniedMessage);
786 exceptionState.throwSecurityError(accessDeniedMessage);
806 exceptionState.throwSecurityError("The document is sandboxed and lacks the 'allow-same-origin' flag.");
808 exceptionState.throwSecurityError("Storage is disabled inside 'data:' URLs.");
810 exceptionState.throwSecurityError(accessDeniedMessage);
816 exceptionState.throwSecurityError(accessDeniedMessage);
831 exceptionState.throwSecurityError(accessDeniedMessage)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/webmidi/
MIDIOutput.cpp 71 exceptionState.throwSecurityError("permission to send system exclusive messages is denied.");
  /external/chromium_org/third_party/WebKit/Source/modules/imagebitmap/
ImageBitmapFactories.cpp 102 exceptionState.throwSecurityError("the source image contains cross-origin image data.");
107 exceptionState.throwSecurityError("cross-origin access to the source image is denied.");
146 exceptionState.throwSecurityError("the source video contains cross-origin image data.");
150 exceptionState.throwSecurityError("cross-origin access to the source video is denied.");
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
WebSocket.cpp 305 exceptionState.throwSecurityError("The port " + String::number(m_url.port()) + " is not allowed.");
318 exceptionState.throwSecurityError("Refused to connect to '" + m_url.elidedString() + "' because it violates the document's Content Security Policy.");
  /external/chromium_org/third_party/WebKit/Source/core/page/
EventSource.cpp 96 exceptionState.throwSecurityError("Refused to connect to '" + fullURL.elidedString() + "' because it violates the document's Content Security Policy.");
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Document.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLCanvasElement.cpp 373 exceptionState.throwSecurityError("Tainted canvases may not be exported.");

Completed in 663 milliseconds

1 2