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

Side by Side Diff: Source/core/dom/Document.h

Issue 799923006: Make canNavigate() OOPI-friendly (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | Source/core/dom/Document.cpp » ('j') | Source/core/dom/RemoteSecurityContext.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2001 Dirk Mueller (mueller@kde.org) 4 * (C) 2001 Dirk Mueller (mueller@kde.org)
5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org)
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All r ights reserved. 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All r ights reserved.
7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/) 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/)
8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) 8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
9 * Copyright (C) 2011 Google Inc. All rights reserved. 9 * Copyright (C) 2011 Google Inc. All rights reserved.
10 * 10 *
(...skipping 539 matching lines...) Expand 10 before | Expand all | Expand 10 after
550 const KURL& baseElementURL() const { return m_baseElementURL; } 550 const KURL& baseElementURL() const { return m_baseElementURL; }
551 const AtomicString& baseTarget() const { return m_baseTarget; } 551 const AtomicString& baseTarget() const { return m_baseTarget; }
552 void processBaseElement(); 552 void processBaseElement();
553 553
554 KURL completeURL(const String&) const; 554 KURL completeURL(const String&) const;
555 KURL completeURLWithOverride(const String&, const KURL& baseURLOverride) con st; 555 KURL completeURLWithOverride(const String&, const KURL& baseURLOverride) con st;
556 556
557 virtual String userAgent(const KURL&) const override final; 557 virtual String userAgent(const KURL&) const override final;
558 virtual void disableEval(const String& errorMessage) override final; 558 virtual void disableEval(const String& errorMessage) override final;
559 559
560 bool canNavigate(const Frame& targetFrame);
561 LocalFrame* findUnsafeParentScrollPropagationBoundary(); 560 LocalFrame* findUnsafeParentScrollPropagationBoundary();
562 561
563 CSSStyleSheet& elementSheet(); 562 CSSStyleSheet& elementSheet();
564 563
565 virtual PassRefPtrWillBeRawPtr<DocumentParser> createParser(); 564 virtual PassRefPtrWillBeRawPtr<DocumentParser> createParser();
566 DocumentParser* parser() const { return m_parser.get(); } 565 DocumentParser* parser() const { return m_parser.get(); }
567 ScriptableDocumentParser* scriptableDocumentParser() const; 566 ScriptableDocumentParser* scriptableDocumentParser() const;
568 567
569 bool printing() const { return m_printing; } 568 bool printing() const { return m_printing; }
570 void setPrinting(bool p) { m_printing = p; } 569 void setPrinting(bool p) { m_printing = p; }
(...skipping 853 matching lines...) Expand 10 before | Expand all | Expand 10 after
1424 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); 1423 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true);
1425 1424
1426 } // namespace blink 1425 } // namespace blink
1427 1426
1428 #ifndef NDEBUG 1427 #ifndef NDEBUG
1429 // Outside the WebCore namespace for ease of invocation from gdb. 1428 // Outside the WebCore namespace for ease of invocation from gdb.
1430 void showLiveDocumentInstances(); 1429 void showLiveDocumentInstances();
1431 #endif 1430 #endif
1432 1431
1433 #endif // Document_h 1432 #endif // Document_h
OLDNEW
« no previous file with comments | « no previous file | Source/core/dom/Document.cpp » ('j') | Source/core/dom/RemoteSecurityContext.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698