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

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

Issue 460393003: Cleanup namespace usage in Source/core/{dom/* & fileapi/*} (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix Error and Rebase Created 6 years, 4 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 unified diff | Download patch
« no previous file with comments | « Source/core/accessibility/AXMediaControls.cpp ('k') | Source/core/dom/Document.cpp » ('j') | no next file with comments »
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 945 matching lines...) Expand 10 before | Expand all | Expand 10 after
956 const TouchEventTargetSet* touchEventTargets() const { return m_touchEventTa rgets.get(); } 956 const TouchEventTargetSet* touchEventTargets() const { return m_touchEventTa rgets.get(); }
957 957
958 bool isInDocumentWrite() { return m_writeRecursionDepth > 0; } 958 bool isInDocumentWrite() { return m_writeRecursionDepth > 0; }
959 959
960 IntSize initialViewportSize() const; 960 IntSize initialViewportSize() const;
961 961
962 TextAutosizer* textAutosizer(); 962 TextAutosizer* textAutosizer();
963 963
964 PassRefPtrWillBeRawPtr<Element> createElement(const AtomicString& localName, const AtomicString& typeExtension, ExceptionState&); 964 PassRefPtrWillBeRawPtr<Element> createElement(const AtomicString& localName, const AtomicString& typeExtension, ExceptionState&);
965 PassRefPtrWillBeRawPtr<Element> createElementNS(const AtomicString& namespac eURI, const AtomicString& qualifiedName, const AtomicString& typeExtension, Exce ptionState&); 965 PassRefPtrWillBeRawPtr<Element> createElementNS(const AtomicString& namespac eURI, const AtomicString& qualifiedName, const AtomicString& typeExtension, Exce ptionState&);
966 ScriptValue registerElement(blink::ScriptState*, const AtomicString& name, E xceptionState&); 966 ScriptValue registerElement(ScriptState*, const AtomicString& name, Exceptio nState&);
967 ScriptValue registerElement(blink::ScriptState*, const AtomicString& name, c onst Dictionary& options, ExceptionState&, CustomElement::NameSet validNames = C ustomElement::StandardNames); 967 ScriptValue registerElement(ScriptState*, const AtomicString& name, const Di ctionary& options, ExceptionState&, CustomElement::NameSet validNames = CustomEl ement::StandardNames);
968 CustomElementRegistrationContext* registrationContext() { return m_registrat ionContext.get(); } 968 CustomElementRegistrationContext* registrationContext() { return m_registrat ionContext.get(); }
969 CustomElementMicrotaskRunQueue* customElementMicrotaskRunQueue(); 969 CustomElementMicrotaskRunQueue* customElementMicrotaskRunQueue();
970 970
971 void setImportsController(HTMLImportsController*); 971 void setImportsController(HTMLImportsController*);
972 HTMLImportsController* importsController() const { return m_importsControlle r; } 972 HTMLImportsController* importsController() const { return m_importsControlle r; }
973 HTMLImportLoader* importLoader() const; 973 HTMLImportLoader* importLoader() const;
974 974
975 bool haveImportsLoaded() const; 975 bool haveImportsLoaded() const;
976 void didLoadAllImports(); 976 void didLoadAllImports();
977 977
(...skipping 443 matching lines...) Expand 10 before | Expand all | Expand 10 after
1421 Node* eventTargetNodeForDocument(Document*); 1421 Node* eventTargetNodeForDocument(Document*);
1422 1422
1423 } // namespace blink 1423 } // namespace blink
1424 1424
1425 #ifndef NDEBUG 1425 #ifndef NDEBUG
1426 // Outside the WebCore namespace for ease of invocation from gdb. 1426 // Outside the WebCore namespace for ease of invocation from gdb.
1427 void showLiveDocumentInstances(); 1427 void showLiveDocumentInstances();
1428 #endif 1428 #endif
1429 1429
1430 #endif // Document_h 1430 #endif // Document_h
OLDNEW
« no previous file with comments | « Source/core/accessibility/AXMediaControls.cpp ('k') | Source/core/dom/Document.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698