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

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

Issue 11649024: Merge 138095 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1364/
Patch Set: Created 8 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
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 1110 matching lines...) Expand 10 before | Expand all | Expand 10 after
1121 1121
1122 #if ENABLE(TOUCH_EVENTS) 1122 #if ENABLE(TOUCH_EVENTS)
1123 bool hasTouchEventHandlers() const { return (m_touchEventTargets.get()) ? m_ touchEventTargets->size() : false; } 1123 bool hasTouchEventHandlers() const { return (m_touchEventTargets.get()) ? m_ touchEventTargets->size() : false; }
1124 #else 1124 #else
1125 bool hasTouchEventHandlers() const { return false; } 1125 bool hasTouchEventHandlers() const { return false; }
1126 #endif 1126 #endif
1127 1127
1128 void didAddTouchEventHandler(Node*); 1128 void didAddTouchEventHandler(Node*);
1129 void didRemoveTouchEventHandler(Node*); 1129 void didRemoveTouchEventHandler(Node*);
1130 1130
1131 #if ENABLE(TOUCH_EVENT_TRACKING) 1131 #if ENABLE(TOUCH_EVENTS)
1132 void didRemoveEventTargetNode(Node*); 1132 void didRemoveEventTargetNode(Node*);
1133 #endif 1133 #endif
1134 1134
1135 #if ENABLE(TOUCH_EVENTS) 1135 #if ENABLE(TOUCH_EVENTS)
1136 const TouchEventTargetSet* touchEventTargets() const { return m_touchEventTa rgets.get(); } 1136 const TouchEventTargetSet* touchEventTargets() const { return m_touchEventTa rgets.get(); }
1137 #else 1137 #else
1138 const TouchEventTargetSet* touchEventTargets() const { return 0; } 1138 const TouchEventTargetSet* touchEventTargets() const { return 0; }
1139 #endif 1139 #endif
1140 1140
1141 bool visualUpdatesAllowed() const { return m_visualUpdatesAllowed; } 1141 bool visualUpdatesAllowed() const { return m_visualUpdatesAllowed; }
(...skipping 449 matching lines...) Expand 10 before | Expand all | Expand 10 after
1591 trackForDebugging(); 1591 trackForDebugging();
1592 #endif 1592 #endif
1593 InspectorCounters::incrementCounter(InspectorCounters::NodeCounter); 1593 InspectorCounters::incrementCounter(InspectorCounters::NodeCounter);
1594 } 1594 }
1595 1595
1596 Node* eventTargetNodeForDocument(Document*); 1596 Node* eventTargetNodeForDocument(Document*);
1597 1597
1598 } // namespace WebCore 1598 } // namespace WebCore
1599 1599
1600 #endif // Document_h 1600 #endif // Document_h
OLDNEW
« no previous file with comments | « LayoutTests/fast/events/touch/touch-input-element-change-documents-expected.txt ('k') | Source/WebCore/dom/Document.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698