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

Side by Side Diff: third_party/WebKit/Source/core/frame/UseCounter.h

Issue 2040563002: Remove FileError interface (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@fe-dep
Patch Set: handleEvent -> invoke and other review nits Created 4 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google, Inc. All rights reserved. 2 * Copyright (C) 2012 Google, Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 ConsoleMarkTimeline = 102, 132 ConsoleMarkTimeline = 102,
133 DocumentCreateAttribute = 111, 133 DocumentCreateAttribute = 111,
134 DocumentCreateAttributeNS = 112, 134 DocumentCreateAttributeNS = 112,
135 DocumentCreateCDATASection = 113, // Removed from DOM4. 135 DocumentCreateCDATASection = 113, // Removed from DOM4.
136 DocumentXMLEncoding = 115, // Removed from DOM4. 136 DocumentXMLEncoding = 115, // Removed from DOM4.
137 DocumentXMLStandalone = 116, // Removed from DOM4. 137 DocumentXMLStandalone = 116, // Removed from DOM4.
138 DocumentXMLVersion = 117, // Removed from DOM4. 138 DocumentXMLVersion = 117, // Removed from DOM4.
139 NavigatorProductSub = 123, 139 NavigatorProductSub = 123,
140 NavigatorVendor = 124, 140 NavigatorVendor = 124,
141 NavigatorVendorSub = 125, 141 NavigatorVendorSub = 125,
142 FileError = 126,
143 PrefixedAnimationEndEvent = 128, 142 PrefixedAnimationEndEvent = 128,
144 UnprefixedAnimationEndEvent = 129, 143 UnprefixedAnimationEndEvent = 129,
145 PrefixedAndUnprefixedAnimationEndEvent = 130, 144 PrefixedAndUnprefixedAnimationEndEvent = 130,
146 PrefixedAnimationStartEvent = 131, 145 PrefixedAnimationStartEvent = 131,
147 UnprefixedAnimationStartEvent = 132, 146 UnprefixedAnimationStartEvent = 132,
148 PrefixedAndUnprefixedAnimationStartEvent = 133, 147 PrefixedAndUnprefixedAnimationStartEvent = 133,
149 PrefixedAnimationIterationEvent = 134, 148 PrefixedAnimationIterationEvent = 134,
150 UnprefixedAnimationIterationEvent = 135, 149 UnprefixedAnimationIterationEvent = 135,
151 PrefixedAndUnprefixedAnimationIterationEvent = 136, 150 PrefixedAndUnprefixedAnimationIterationEvent = 136,
152 EventReturnValue = 137, // Legacy IE extension. 151 EventReturnValue = 137, // Legacy IE extension.
(...skipping 1179 matching lines...) Expand 10 before | Expand all | Expand 10 after
1332 friend class UseCounterTest; 1331 friend class UseCounterTest;
1333 static int m_muteCount; 1332 static int m_muteCount;
1334 1333
1335 CountBits m_countBits; 1334 CountBits m_countBits;
1336 BitVector m_CSSFeatureBits; 1335 BitVector m_CSSFeatureBits;
1337 }; 1336 };
1338 1337
1339 } // namespace blink 1338 } // namespace blink
1340 1339
1341 #endif // UseCounter_h 1340 #endif // UseCounter_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698