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

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

Issue 2037553002: INPUT pattern attribute: Enable "unicode" flag. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add a comment about |mutable|, remove unnecessary #include 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 1054 matching lines...) Expand 10 before | Expand all | Expand 10 after
1065 DocumentAllItemNoArguments = 1252, 1065 DocumentAllItemNoArguments = 1252,
1066 DocumentAllItemNamed = 1253, 1066 DocumentAllItemNamed = 1253,
1067 DocumentAllItemIndexed = 1254, 1067 DocumentAllItemIndexed = 1254,
1068 DocumentAllItemIndexedWithNonNumber = 1255, 1068 DocumentAllItemIndexedWithNonNumber = 1255,
1069 DocumentAllLegacyCallNoArguments = 1256, 1069 DocumentAllLegacyCallNoArguments = 1256,
1070 DocumentAllLegacyCallNamed = 1257, 1070 DocumentAllLegacyCallNamed = 1257,
1071 DocumentAllLegacyCallIndexed = 1258, 1071 DocumentAllLegacyCallIndexed = 1258,
1072 DocumentAllLegacyCallIndexedWithNonNumber = 1259, 1072 DocumentAllLegacyCallIndexedWithNonNumber = 1259,
1073 DocumentAllLegacyCallTwoArguments = 1260, 1073 DocumentAllLegacyCallTwoArguments = 1260,
1074 HTMLLabelElementControlForNonFormAssociatedElement = 1263, 1074 HTMLLabelElementControlForNonFormAssociatedElement = 1263,
1075 PatternAttributeUnicodeFlagIsIncompatible = 1264,
1076 HTMLMediaElementLoadNetworkEmptyNotPaused = 1265, 1075 HTMLMediaElementLoadNetworkEmptyNotPaused = 1265,
1077 EventRelatedTargetScoped = 1266, 1076 EventRelatedTargetScoped = 1266,
1078 V8Window_WebkitSpeechGrammar_ConstructorGetter = 1267, 1077 V8Window_WebkitSpeechGrammar_ConstructorGetter = 1267,
1079 V8Window_WebkitSpeechGrammarList_ConstructorGetter = 1268, 1078 V8Window_WebkitSpeechGrammarList_ConstructorGetter = 1268,
1080 V8Window_WebkitSpeechRecognition_ConstructorGetter = 1269, 1079 V8Window_WebkitSpeechRecognition_ConstructorGetter = 1269,
1081 V8Window_WebkitSpeechRecognitionError_ConstructorGetter = 1270, 1080 V8Window_WebkitSpeechRecognitionError_ConstructorGetter = 1270,
1082 V8Window_WebkitSpeechRecognitionEvent_ConstructorGetter = 1271, 1081 V8Window_WebkitSpeechRecognitionEvent_ConstructorGetter = 1271,
1083 V8Window_SpeechSynthesis_AttributeGetter = 1272, 1082 V8Window_SpeechSynthesis_AttributeGetter = 1272,
1084 V8IDBFactory_WebkitGetDatabaseNames_Method = 1273, 1083 V8IDBFactory_WebkitGetDatabaseNames_Method = 1273,
1085 ImageDocument = 1274, 1084 ImageDocument = 1274,
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
1286 friend class UseCounterTest; 1285 friend class UseCounterTest;
1287 static int m_muteCount; 1286 static int m_muteCount;
1288 1287
1289 CountBits m_countBits; 1288 CountBits m_countBits;
1290 BitVector m_CSSFeatureBits; 1289 BitVector m_CSSFeatureBits;
1291 }; 1290 };
1292 1291
1293 } // namespace blink 1292 } // namespace blink
1294 1293
1295 #endif // UseCounter_h 1294 #endif // UseCounter_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698