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

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

Issue 2014173002: Rename Event.deepPath() to Event.composedPath() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix wrong reset 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 918 matching lines...) Expand 10 before | Expand all | Expand 10 after
929 SVG1DOMSVGElement = 1114, 929 SVG1DOMSVGElement = 1114,
930 SVG1DOMImageElement = 1115, 930 SVG1DOMImageElement = 1115,
931 SVG1DOMForeignObjectElement = 1116, 931 SVG1DOMForeignObjectElement = 1116,
932 AudioContextCreateIIRFilter = 1117, 932 AudioContextCreateIIRFilter = 1117,
933 // The above items are available in M49 branch 933 // The above items are available in M49 branch
934 934
935 CSSSelectorPseudoSlotted = 1118, 935 CSSSelectorPseudoSlotted = 1118,
936 MediaDevicesEnumerateDevices = 1119, 936 MediaDevicesEnumerateDevices = 1119,
937 NonSecureSharedWorkerAccessedFromSecureContext = 1120, 937 NonSecureSharedWorkerAccessedFromSecureContext = 1120,
938 SecureSharedWorkerAccessedFromNonSecureContext = 1121, 938 SecureSharedWorkerAccessedFromNonSecureContext = 1121,
939 EventDeepPath = 1123, 939 EventComposedPath = 1123,
940 LinkHeaderPreload = 1124, 940 LinkHeaderPreload = 1124,
941 MouseWheelEvent = 1125, 941 MouseWheelEvent = 1125,
942 WheelEvent = 1126, 942 WheelEvent = 1126,
943 MouseWheelAndWheelEvent = 1127, 943 MouseWheelAndWheelEvent = 1127,
944 BodyScrollsInAdditionToViewport = 1128, 944 BodyScrollsInAdditionToViewport = 1128,
945 DocumentDesignModeEnabeld = 1129, 945 DocumentDesignModeEnabeld = 1129,
946 ContentEditableTrue = 1130, 946 ContentEditableTrue = 1130,
947 ContentEditableTrueOnHTML = 1131, 947 ContentEditableTrueOnHTML = 1131,
948 ContentEditablePlainTextOnly = 1132, 948 ContentEditablePlainTextOnly = 1132,
949 V8RegExpPrototypeUnicodeGetter = 1133, 949 V8RegExpPrototypeUnicodeGetter = 1133,
(...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after
1280 friend class UseCounterTest; 1280 friend class UseCounterTest;
1281 static int m_muteCount; 1281 static int m_muteCount;
1282 1282
1283 CountBits m_countBits; 1283 CountBits m_countBits;
1284 BitVector m_CSSFeatureBits; 1284 BitVector m_CSSFeatureBits;
1285 }; 1285 };
1286 1286
1287 } // namespace blink 1287 } // namespace blink
1288 1288
1289 #endif // UseCounter_h 1289 #endif // UseCounter_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698