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

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: Review feedback Created 4 years, 6 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 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 ConsoleMarkTimeline = 102, 134 ConsoleMarkTimeline = 102,
135 DocumentCreateAttribute = 111, 135 DocumentCreateAttribute = 111,
136 DocumentCreateAttributeNS = 112, 136 DocumentCreateAttributeNS = 112,
137 DocumentCreateCDATASection = 113, // Removed from DOM4. 137 DocumentCreateCDATASection = 113, // Removed from DOM4.
138 DocumentXMLEncoding = 115, // Removed from DOM4. 138 DocumentXMLEncoding = 115, // Removed from DOM4.
139 DocumentXMLStandalone = 116, // Removed from DOM4. 139 DocumentXMLStandalone = 116, // Removed from DOM4.
140 DocumentXMLVersion = 117, // Removed from DOM4. 140 DocumentXMLVersion = 117, // Removed from DOM4.
141 NavigatorProductSub = 123, 141 NavigatorProductSub = 123,
142 NavigatorVendor = 124, 142 NavigatorVendor = 124,
143 NavigatorVendorSub = 125, 143 NavigatorVendorSub = 125,
144 FileError = 126,
145 PrefixedAnimationEndEvent = 128, 144 PrefixedAnimationEndEvent = 128,
146 UnprefixedAnimationEndEvent = 129, 145 UnprefixedAnimationEndEvent = 129,
147 PrefixedAndUnprefixedAnimationEndEvent = 130, 146 PrefixedAndUnprefixedAnimationEndEvent = 130,
148 PrefixedAnimationStartEvent = 131, 147 PrefixedAnimationStartEvent = 131,
149 UnprefixedAnimationStartEvent = 132, 148 UnprefixedAnimationStartEvent = 132,
150 PrefixedAndUnprefixedAnimationStartEvent = 133, 149 PrefixedAndUnprefixedAnimationStartEvent = 133,
151 PrefixedAnimationIterationEvent = 134, 150 PrefixedAnimationIterationEvent = 134,
152 UnprefixedAnimationIterationEvent = 135, 151 UnprefixedAnimationIterationEvent = 135,
153 PrefixedAndUnprefixedAnimationIterationEvent = 136, 152 PrefixedAndUnprefixedAnimationIterationEvent = 136,
154 EventReturnValue = 137, // Legacy IE extension. 153 EventReturnValue = 137, // Legacy IE extension.
(...skipping 1137 matching lines...) Expand 10 before | Expand all | Expand 10 after
1292 friend class UseCounterTest; 1291 friend class UseCounterTest;
1293 static int m_muteCount; 1292 static int m_muteCount;
1294 1293
1295 CountBits m_countBits; 1294 CountBits m_countBits;
1296 BitVector m_CSSFeatureBits; 1295 BitVector m_CSSFeatureBits;
1297 }; 1296 };
1298 1297
1299 } // namespace blink 1298 } // namespace blink
1300 1299
1301 #endif // UseCounter_h 1300 #endif // UseCounter_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698