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

Side by Side Diff: Source/core/html/HTMLDocument.h

Issue 14929004: Remove captureEvents and releaseEvents (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « Source/bindings/v8/custom/V8DOMWindowCustom.cpp ('k') | Source/core/html/HTMLDocument.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 * Copyright (C) 2004, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. 4 * Copyright (C) 2004, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 void setFgColor(const String&); 59 void setFgColor(const String&);
60 String alinkColor(); 60 String alinkColor();
61 void setAlinkColor(const String&); 61 void setAlinkColor(const String&);
62 String linkColor(); 62 String linkColor();
63 void setLinkColor(const String&); 63 void setLinkColor(const String&);
64 String vlinkColor(); 64 String vlinkColor();
65 void setVlinkColor(const String&); 65 void setVlinkColor(const String&);
66 66
67 void clear(); 67 void clear();
68 68
69 void captureEvents();
70 void releaseEvents();
71
72 void addNamedItem(const AtomicString& name); 69 void addNamedItem(const AtomicString& name);
73 void removeNamedItem(const AtomicString& name); 70 void removeNamedItem(const AtomicString& name);
74 bool hasNamedItem(AtomicStringImpl* name); 71 bool hasNamedItem(AtomicStringImpl* name);
75 72
76 void addExtraNamedItem(const AtomicString& name); 73 void addExtraNamedItem(const AtomicString& name);
77 void removeExtraNamedItem(const AtomicString& name); 74 void removeExtraNamedItem(const AtomicString& name);
78 bool hasExtraNamedItem(AtomicStringImpl* name); 75 bool hasExtraNamedItem(AtomicStringImpl* name);
79 76
80 static bool isCaseSensitiveAttribute(const QualifiedName&); 77 static bool isCaseSensitiveAttribute(const QualifiedName&);
81 78
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 ASSERT_WITH_SECURITY_IMPLICATION(!document || document->isHTMLDocument()); 115 ASSERT_WITH_SECURITY_IMPLICATION(!document || document->isHTMLDocument());
119 return static_cast<const HTMLDocument*>(document); 116 return static_cast<const HTMLDocument*>(document);
120 } 117 }
121 118
122 // This will catch anyone doing an unnecessary cast. 119 // This will catch anyone doing an unnecessary cast.
123 void toHTMLDocument(const HTMLDocument*); 120 void toHTMLDocument(const HTMLDocument*);
124 121
125 } // namespace WebCore 122 } // namespace WebCore
126 123
127 #endif // HTMLDocument_h 124 #endif // HTMLDocument_h
OLDNEW
« no previous file with comments | « Source/bindings/v8/custom/V8DOMWindowCustom.cpp ('k') | Source/core/html/HTMLDocument.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698