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

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

Issue 1799253002: Stricter user gestures for touch - measure and warn (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 1078 matching lines...) Expand 10 before | Expand all | Expand 10 after
1089 V8Window_WebkitSpeechRecognitionEvent_ConstructorGetter = 1271, 1089 V8Window_WebkitSpeechRecognitionEvent_ConstructorGetter = 1271,
1090 V8Window_SpeechSynthesis_AttributeGetter = 1272, 1090 V8Window_SpeechSynthesis_AttributeGetter = 1272,
1091 V8IDBFactory_WebkitGetDatabaseNames_Method = 1273, 1091 V8IDBFactory_WebkitGetDatabaseNames_Method = 1273,
1092 ImageDocument = 1274, 1092 ImageDocument = 1274,
1093 ScriptPassesCSPDynamic = 1275, 1093 ScriptPassesCSPDynamic = 1275,
1094 ScriptPassesCSPNonce = 1276, 1094 ScriptPassesCSPNonce = 1276,
1095 CSPWithUnsafeDynamic = 1277, 1095 CSPWithUnsafeDynamic = 1277,
1096 ScrollAnchored = 1278, 1096 ScrollAnchored = 1278,
1097 AddEventListenerFourArguments = 1279, 1097 AddEventListenerFourArguments = 1279,
1098 RemoveEventListenerFourArguments = 1280, 1098 RemoveEventListenerFourArguments = 1280,
1099 TouchDragUserGestureUsed = 1281,
1100 TouchDragUserGestureUsedCrossOrigin = 1282,
1099 1101
1100 // Add new features immediately above this line. Don't change assigned 1102 // Add new features immediately above this line. Don't change assigned
1101 // numbers of any item, and don't reuse removed slots. 1103 // numbers of any item, and don't reuse removed slots.
1102 // Also, run update_use_counter_feature_enum.py in chromium/src/tools/me trics/histograms/ 1104 // Also, run update_use_counter_feature_enum.py in chromium/src/tools/me trics/histograms/
1103 // to update the UMA mapping. 1105 // to update the UMA mapping.
1104 NumberOfFeatures, // This enum value must be last. 1106 NumberOfFeatures, // This enum value must be last.
1105 }; 1107 };
1106 1108
1107 // "count" sets the bit for this feature to 1. Repeated calls are ignored. 1109 // "count" sets the bit for this feature to 1. Repeated calls are ignored.
1108 static void count(const Frame*, Feature); 1110 static void count(const Frame*, Feature);
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
1183 friend class UseCounterTest; 1185 friend class UseCounterTest;
1184 static int m_muteCount; 1186 static int m_muteCount;
1185 1187
1186 CountBits m_countBits; 1188 CountBits m_countBits;
1187 BitVector m_CSSFeatureBits; 1189 BitVector m_CSSFeatureBits;
1188 }; 1190 };
1189 1191
1190 } // namespace blink 1192 } // namespace blink
1191 1193
1192 #endif // UseCounter_h 1194 #endif // UseCounter_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698