Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(261)

Unified Diff: third_party/WebKit/Source/core/frame/RemoteDOMWindow.cpp

Issue 2668753006: Special-case LocalDOMWindow for same-origin access in bindings. (Closed)
Patch Set: Rebase and address comments. Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/frame/RemoteDOMWindow.cpp
diff --git a/third_party/WebKit/Source/core/frame/RemoteDOMWindow.cpp b/third_party/WebKit/Source/core/frame/RemoteDOMWindow.cpp
index 706ee2ad8e1138ec64b2766f05c87088922571be..bc6b0d28589c3582e4f062ca91211857aecfb1e4 100644
--- a/third_party/WebKit/Source/core/frame/RemoteDOMWindow.cpp
+++ b/third_party/WebKit/Source/core/frame/RemoteDOMWindow.cpp
@@ -4,10 +4,6 @@
#include "core/frame/RemoteDOMWindow.h"
-#include "bindings/core/v8/SerializedScriptValue.h"
-#include "core/css/CSSRuleList.h"
-#include "core/css/CSSStyleDeclaration.h"
-#include "core/css/MediaQueryList.h"
#include "core/dom/Document.h"
#include "core/frame/RemoteFrameClient.h"
@@ -21,270 +17,10 @@ DEFINE_TRACE(RemoteDOMWindow) {
DOMWindow::trace(visitor);
}
-Screen* RemoteDOMWindow::screen() const {
- ASSERT_NOT_REACHED();
- return nullptr;
-}
-
-History* RemoteDOMWindow::history() const {
- ASSERT_NOT_REACHED();
- return nullptr;
-}
-
-BarProp* RemoteDOMWindow::locationbar() const {
- ASSERT_NOT_REACHED();
- return nullptr;
-}
-
-BarProp* RemoteDOMWindow::menubar() const {
- ASSERT_NOT_REACHED();
- return nullptr;
-}
-
-BarProp* RemoteDOMWindow::personalbar() const {
- ASSERT_NOT_REACHED();
- return nullptr;
-}
-
-BarProp* RemoteDOMWindow::scrollbars() const {
- ASSERT_NOT_REACHED();
- return nullptr;
-}
-
-BarProp* RemoteDOMWindow::statusbar() const {
- ASSERT_NOT_REACHED();
- return nullptr;
-}
-
-BarProp* RemoteDOMWindow::toolbar() const {
- ASSERT_NOT_REACHED();
- return nullptr;
-}
-
-Navigator* RemoteDOMWindow::navigator() const {
- ASSERT_NOT_REACHED();
- return nullptr;
-}
-
-bool RemoteDOMWindow::offscreenBuffering() const {
- ASSERT_NOT_REACHED();
- return false;
-}
-
-int RemoteDOMWindow::outerHeight() const {
- ASSERT_NOT_REACHED();
- return 0;
-}
-
-int RemoteDOMWindow::outerWidth() const {
- ASSERT_NOT_REACHED();
- return 0;
-}
-
-int RemoteDOMWindow::innerHeight() const {
- ASSERT_NOT_REACHED();
- return 0;
-}
-
-int RemoteDOMWindow::innerWidth() const {
- ASSERT_NOT_REACHED();
- return 0;
-}
-
-int RemoteDOMWindow::screenX() const {
- ASSERT_NOT_REACHED();
- return 0;
-}
-
-int RemoteDOMWindow::screenY() const {
- ASSERT_NOT_REACHED();
- return 0;
-}
-
-double RemoteDOMWindow::scrollX() const {
- ASSERT_NOT_REACHED();
- return 0.0;
-}
-
-double RemoteDOMWindow::scrollY() const {
- ASSERT_NOT_REACHED();
- return 0.0;
-}
-
-const AtomicString& RemoteDOMWindow::name() const {
- // FIXME: Implement.
- return emptyAtom;
-}
-
-void RemoteDOMWindow::setName(const AtomicString&) {}
-
-String RemoteDOMWindow::status() const {
- ASSERT_NOT_REACHED();
- return String();
-}
-
-void RemoteDOMWindow::setStatus(const String&) {
- ASSERT_NOT_REACHED();
-}
-
-String RemoteDOMWindow::defaultStatus() const {
- ASSERT_NOT_REACHED();
- return String();
-}
-
-void RemoteDOMWindow::setDefaultStatus(const String&) {
- ASSERT_NOT_REACHED();
-}
-
-Document* RemoteDOMWindow::document() const {
- ASSERT_NOT_REACHED();
- return nullptr;
-}
-
-StyleMedia* RemoteDOMWindow::styleMedia() const {
- ASSERT_NOT_REACHED();
- return nullptr;
-}
-
-double RemoteDOMWindow::devicePixelRatio() const {
- ASSERT_NOT_REACHED();
- return 0.0;
-}
-
-ApplicationCache* RemoteDOMWindow::applicationCache() const {
- ASSERT_NOT_REACHED();
- return nullptr;
-}
-
-int RemoteDOMWindow::orientation() const {
- ASSERT_NOT_REACHED();
- return 0;
-}
-
-DOMSelection* RemoteDOMWindow::getSelection() {
- ASSERT_NOT_REACHED();
- return 0;
-}
-
void RemoteDOMWindow::blur() {
// FIXME: Implement.
}
-void RemoteDOMWindow::print(ScriptState*) {
- ASSERT_NOT_REACHED();
-}
-
-void RemoteDOMWindow::stop() {
- // FIXME: Implement.
-}
-
-void RemoteDOMWindow::alert(ScriptState*, const String& message) {
- ASSERT_NOT_REACHED();
-}
-
-bool RemoteDOMWindow::confirm(ScriptState*, const String& message) {
- ASSERT_NOT_REACHED();
- return false;
-}
-
-String RemoteDOMWindow::prompt(ScriptState*,
- const String& message,
- const String& defaultValue) {
- ASSERT_NOT_REACHED();
- return String();
-}
-
-bool RemoteDOMWindow::find(const String&,
- bool caseSensitive,
- bool backwards,
- bool wrap,
- bool wholeWord,
- bool searchInFrames,
- bool showDialog) const {
- ASSERT_NOT_REACHED();
- return false;
-}
-
-void RemoteDOMWindow::scrollBy(double x, double y, ScrollBehavior) const {
- ASSERT_NOT_REACHED();
-}
-
-void RemoteDOMWindow::scrollBy(const ScrollToOptions&) const {
- ASSERT_NOT_REACHED();
-}
-
-void RemoteDOMWindow::scrollTo(double x, double y) const {
- ASSERT_NOT_REACHED();
-}
-
-void RemoteDOMWindow::scrollTo(const ScrollToOptions&) const {
- ASSERT_NOT_REACHED();
-}
-
-void RemoteDOMWindow::moveBy(int x, int y) const {
- ASSERT_NOT_REACHED();
-}
-
-void RemoteDOMWindow::moveTo(int x, int y) const {
- ASSERT_NOT_REACHED();
-}
-
-void RemoteDOMWindow::resizeBy(int x, int y) const {
- ASSERT_NOT_REACHED();
-}
-
-void RemoteDOMWindow::resizeTo(int width, int height) const {
- ASSERT_NOT_REACHED();
-}
-
-MediaQueryList* RemoteDOMWindow::matchMedia(const String&) {
- ASSERT_NOT_REACHED();
- return nullptr;
-}
-
-CSSStyleDeclaration* RemoteDOMWindow::getComputedStyle(
- Element*,
- const String& pseudoElt) const {
- ASSERT_NOT_REACHED();
- return nullptr;
-}
-
-CSSRuleList* RemoteDOMWindow::getMatchedCSSRules(
- Element*,
- const String& pseudoElt) const {
- ASSERT_NOT_REACHED();
- return nullptr;
-}
-
-int RemoteDOMWindow::requestAnimationFrame(FrameRequestCallback*) {
- ASSERT_NOT_REACHED();
- return 0;
-}
-
-int RemoteDOMWindow::webkitRequestAnimationFrame(FrameRequestCallback*) {
- ASSERT_NOT_REACHED();
- return 0;
-}
-
-void RemoteDOMWindow::cancelAnimationFrame(int id) {
- ASSERT_NOT_REACHED();
-}
-
-int RemoteDOMWindow::requestIdleCallback(IdleRequestCallback*,
- const IdleRequestOptions&) {
- ASSERT_NOT_REACHED();
- return 0;
-}
-
-void RemoteDOMWindow::cancelIdleCallback(int id) {
- ASSERT_NOT_REACHED();
-}
-
-CustomElementRegistry* RemoteDOMWindow::customElements(ScriptState*) const {
- ASSERT_NOT_REACHED();
- return nullptr;
-}
-
RemoteDOMWindow::RemoteDOMWindow(RemoteFrame& frame) : DOMWindow(frame) {}
void RemoteDOMWindow::frameDetached() {
« no previous file with comments | « third_party/WebKit/Source/core/frame/RemoteDOMWindow.h ('k') | third_party/WebKit/Source/core/loader/FrameLoader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698