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

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

Issue 2082463002: Measure the usage of navigator.vibrate in for user gesture & subframe. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix issues mentioned in comments. Created 4 years, 5 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 653 matching lines...) Expand 10 before | Expand all | Expand 10 after
664 FormDataAppendFileWithFilename = 840, 664 FormDataAppendFileWithFilename = 840,
665 FormDataAppendBlob = 841, 665 FormDataAppendBlob = 841,
666 FormDataAppendBlobWithFilename = 842, 666 FormDataAppendBlobWithFilename = 842,
667 FormDataAppendNull = 843, 667 FormDataAppendNull = 843,
668 HTMLDocumentCreateAttributeNameNotLowercase = 844, 668 HTMLDocumentCreateAttributeNameNotLowercase = 844,
669 NonHTMLElementSetAttributeNodeFromHTMLDocumentNameNotLowercase = 845, 669 NonHTMLElementSetAttributeNodeFromHTMLDocumentNameNotLowercase = 845,
670 DOMStringList_Item_AttributeGetter_IndexedDB = 846, 670 DOMStringList_Item_AttributeGetter_IndexedDB = 846,
671 DOMStringList_Item_AttributeGetter_Location = 847, 671 DOMStringList_Item_AttributeGetter_Location = 847,
672 DOMStringList_Contains_Method_IndexedDB = 848, 672 DOMStringList_Contains_Method_IndexedDB = 848,
673 DOMStringList_Contains_Method_Location = 849, 673 DOMStringList_Contains_Method_Location = 849,
674 NavigatorVibrate = 850,
675 NavigatorVibrateSubFrame = 851,
676 V8XPathEvaluator_Constructor = 853, 674 V8XPathEvaluator_Constructor = 853,
677 V8XPathEvaluator_CreateExpression_Method = 854, 675 V8XPathEvaluator_CreateExpression_Method = 854,
678 V8XPathEvaluator_CreateNSResolver_Method = 855, 676 V8XPathEvaluator_CreateNSResolver_Method = 855,
679 V8XPathEvaluator_Evaluate_Method = 856, 677 V8XPathEvaluator_Evaluate_Method = 856,
680 RequestMIDIAccess = 857, 678 RequestMIDIAccess = 857,
681 V8MouseEvent_LayerX_AttributeGetter = 858, 679 V8MouseEvent_LayerX_AttributeGetter = 858,
682 V8MouseEvent_LayerY_AttributeGetter = 859, 680 V8MouseEvent_LayerY_AttributeGetter = 859,
683 InnerTextWithShadowTree = 860, 681 InnerTextWithShadowTree = 860,
684 SelectionToStringWithShadowTree = 861, 682 SelectionToStringWithShadowTree = 861,
685 WindowFindWithShadowTree = 862, 683 WindowFindWithShadowTree = 862,
(...skipping 615 matching lines...) Expand 10 before | Expand all | Expand 10 after
1301 friend class UseCounterTest; 1299 friend class UseCounterTest;
1302 static int m_muteCount; 1300 static int m_muteCount;
1303 1301
1304 CountBits m_countBits; 1302 CountBits m_countBits;
1305 BitVector m_CSSFeatureBits; 1303 BitVector m_CSSFeatureBits;
1306 }; 1304 };
1307 1305
1308 } // namespace blink 1306 } // namespace blink
1309 1307
1310 #endif // UseCounter_h 1308 #endif // UseCounter_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698