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

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

Issue 10695128: Merge 120979 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1180/
Patch Set: Created 8 years, 5 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/WebCore/dom/ClassNodeList.cpp ('k') | Source/WebCore/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 1090 matching lines...) Expand 10 before | Expand all | Expand 10 after
1101 void didRemoveWheelEventHandler(); 1101 void didRemoveWheelEventHandler();
1102 1102
1103 unsigned touchEventHandlerCount() const { return m_touchEventHandlerCount; } 1103 unsigned touchEventHandlerCount() const { return m_touchEventHandlerCount; }
1104 void didAddTouchEventHandler(); 1104 void didAddTouchEventHandler();
1105 void didRemoveTouchEventHandler(); 1105 void didRemoveTouchEventHandler();
1106 1106
1107 bool visualUpdatesAllowed() const { return m_visualUpdatesAllowed; } 1107 bool visualUpdatesAllowed() const { return m_visualUpdatesAllowed; }
1108 1108
1109 #if ENABLE(MICRODATA) 1109 #if ENABLE(MICRODATA)
1110 PassRefPtr<NodeList> getItems(const String& typeNames); 1110 PassRefPtr<NodeList> getItems(const String& typeNames);
1111 void removeCachedMicroDataItemList(MicroDataItemList*, const String&);
1112 #endif 1111 #endif
1113 1112
1114 #if ENABLE(UNDO_MANAGER) 1113 #if ENABLE(UNDO_MANAGER)
1115 PassRefPtr<UndoManager> undoManager(); 1114 PassRefPtr<UndoManager> undoManager();
1116 #endif 1115 #endif
1117 1116
1118 bool isInDocumentWrite() { return m_writeRecursionDepth > 0; } 1117 bool isInDocumentWrite() { return m_writeRecursionDepth > 0; }
1119 1118
1120 void suspendScheduledTasks(ActiveDOMObject::ReasonForSuspension); 1119 void suspendScheduledTasks(ActiveDOMObject::ReasonForSuspension);
1121 void resumeScheduledTasks(); 1120 void resumeScheduledTasks();
(...skipping 398 matching lines...) Expand 10 before | Expand all | Expand 10 after
1520 trackForDebugging(); 1519 trackForDebugging();
1521 #endif 1520 #endif
1522 InspectorCounters::incrementCounter(InspectorCounters::NodeCounter); 1521 InspectorCounters::incrementCounter(InspectorCounters::NodeCounter);
1523 } 1522 }
1524 1523
1525 Node* eventTargetNodeForDocument(Document*); 1524 Node* eventTargetNodeForDocument(Document*);
1526 1525
1527 } // namespace WebCore 1526 } // namespace WebCore
1528 1527
1529 #endif // Document_h 1528 #endif // Document_h
OLDNEW
« no previous file with comments | « Source/WebCore/dom/ClassNodeList.cpp ('k') | Source/WebCore/dom/Document.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698