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

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: Tweaks 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 1081 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 InvalidReportUriDirectiveInMetaCSP = 1281, 1099 InvalidReportUriDirectiveInMetaCSP = 1281,
1100 InvalidSandboxDirectiveInMetaCSP = 1282, 1100 InvalidSandboxDirectiveInMetaCSP = 1282,
1101 InvalidFrameAncestorsDirectiveInMetaCSP = 1283, 1101 InvalidFrameAncestorsDirectiveInMetaCSP = 1283,
1102 TouchDragUserGestureUsed = 1284,
1103 TouchDragUserGestureUsedCrossOrigin = 1285,
1102 1104
1103 // Add new features immediately above this line. Don't change assigned 1105 // Add new features immediately above this line. Don't change assigned
1104 // numbers of any item, and don't reuse removed slots. 1106 // numbers of any item, and don't reuse removed slots.
1105 // Also, run update_use_counter_feature_enum.py in chromium/src/tools/me trics/histograms/ 1107 // Also, run update_use_counter_feature_enum.py in chromium/src/tools/me trics/histograms/
1106 // to update the UMA mapping. 1108 // to update the UMA mapping.
1107 NumberOfFeatures, // This enum value must be last. 1109 NumberOfFeatures, // This enum value must be last.
1108 }; 1110 };
1109 1111
1110 // "count" sets the bit for this feature to 1. Repeated calls are ignored. 1112 // "count" sets the bit for this feature to 1. Repeated calls are ignored.
1111 static void count(const Frame*, Feature); 1113 static void count(const Frame*, Feature);
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
1186 friend class UseCounterTest; 1188 friend class UseCounterTest;
1187 static int m_muteCount; 1189 static int m_muteCount;
1188 1190
1189 CountBits m_countBits; 1191 CountBits m_countBits;
1190 BitVector m_CSSFeatureBits; 1192 BitVector m_CSSFeatureBits;
1191 }; 1193 };
1192 1194
1193 } // namespace blink 1195 } // namespace blink
1194 1196
1195 #endif // UseCounter_h 1197 #endif // UseCounter_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698