Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 1065 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1076 DocumentCreateEventAudioProcessingEvent = 1222, | 1076 DocumentCreateEventAudioProcessingEvent = 1222, |
| 1077 DocumentCreateEventOfflineAudioCompletionEvent = 1223, | 1077 DocumentCreateEventOfflineAudioCompletionEvent = 1223, |
| 1078 DocumentCreateEventWebGLContextEvent = 1224, | 1078 DocumentCreateEventWebGLContextEvent = 1224, |
| 1079 DocumentCreateEventMIDIConnectionEvent = 1225, | 1079 DocumentCreateEventMIDIConnectionEvent = 1225, |
| 1080 DocumentCreateEventMIDIMessageEvent = 1226, | 1080 DocumentCreateEventMIDIMessageEvent = 1226, |
| 1081 DocumentCreateEventCloseEvent = 1227, | 1081 DocumentCreateEventCloseEvent = 1227, |
| 1082 DocumentCreateEventKeyboardEvents = 1228, | 1082 DocumentCreateEventKeyboardEvents = 1228, |
| 1083 HTMLMediaElement = 1229, | 1083 HTMLMediaElement = 1229, |
| 1084 HTMLMediaElementInDocument = 1230, | 1084 HTMLMediaElementInDocument = 1230, |
| 1085 HTMLMediaElementControlsAttribute = 1231, | 1085 HTMLMediaElementControlsAttribute = 1231, |
| 1086 DeprecateSVGZoomEvent = 1232, | |
|
philipj_slow
2016/02/16 09:49:35
Maybe just SVGZoomEvent? We have many deprecated t
davve
2016/02/16 10:09:37
Done.
| |
| 1086 | 1087 |
| 1087 // Add new features immediately above this line. Don't change assigned | 1088 // Add new features immediately above this line. Don't change assigned |
| 1088 // numbers of any item, and don't reuse removed slots. | 1089 // numbers of any item, and don't reuse removed slots. |
| 1089 // Also, run update_use_counter_feature_enum.py in chromium/src/tools/me trics/histograms/ | 1090 // Also, run update_use_counter_feature_enum.py in chromium/src/tools/me trics/histograms/ |
| 1090 // to update the UMA mapping. | 1091 // to update the UMA mapping. |
| 1091 NumberOfFeatures, // This enum value must be last. | 1092 NumberOfFeatures, // This enum value must be last. |
| 1092 }; | 1093 }; |
| 1093 | 1094 |
| 1094 // "count" sets the bit for this feature to 1. Repeated calls are ignored. | 1095 // "count" sets the bit for this feature to 1. Repeated calls are ignored. |
| 1095 static void count(const Frame*, Feature); | 1096 static void count(const Frame*, Feature); |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1166 friend class UseCounterTest; | 1167 friend class UseCounterTest; |
| 1167 static int m_muteCount; | 1168 static int m_muteCount; |
| 1168 | 1169 |
| 1169 CountBits m_countBits; | 1170 CountBits m_countBits; |
| 1170 BitVector m_CSSFeatureBits; | 1171 BitVector m_CSSFeatureBits; |
| 1171 }; | 1172 }; |
| 1172 | 1173 |
| 1173 } // namespace blink | 1174 } // namespace blink |
| 1174 | 1175 |
| 1175 #endif // UseCounter_h | 1176 #endif // UseCounter_h |
| OLD | NEW |