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

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

Issue 183313003: Added non-prefixed navigator.getGamepads() with updated API (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Oilpan tweaks Created 6 years, 9 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 | Annotate | Revision Log
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 286 matching lines...) Expand 10 before | Expand all | Expand 10 after
297 HTMLAnchorElementPingAttribute = 276, 297 HTMLAnchorElementPingAttribute = 276,
298 JavascriptExhaustedMemory = 277, 298 JavascriptExhaustedMemory = 277,
299 InsertAdjacentHTML = 278, 299 InsertAdjacentHTML = 278,
300 SVGClassName = 279, 300 SVGClassName = 279,
301 HTMLAppletElement = 280, 301 HTMLAppletElement = 280,
302 HTMLMediaElementSeekToFragmentStart = 281, 302 HTMLMediaElementSeekToFragmentStart = 281,
303 HTMLMediaElementPauseAtFragmentEnd = 282, 303 HTMLMediaElementPauseAtFragmentEnd = 282,
304 PrefixedWindowURL = 283, 304 PrefixedWindowURL = 283,
305 PrefixedWorkerURL = 284, 305 PrefixedWorkerURL = 284,
306 WindowOrientation = 285, 306 WindowOrientation = 285,
307 PrefixedGamepad = 286,
Nils Barth (inactive) 2014/03/12 05:13:52 (You'll need to sync and update this to 287.)
307 // Add new features immediately above this line. Don't change assigned 308 // Add new features immediately above this line. Don't change assigned
308 // numbers of any item, and don't reuse removed slots. 309 // numbers of any item, and don't reuse removed slots.
309 NumberOfFeatures, // This enum value must be last. 310 NumberOfFeatures, // This enum value must be last.
310 }; 311 };
311 312
312 // "count" sets the bit for this feature to 1. Repeated calls are ignored. 313 // "count" sets the bit for this feature to 1. Repeated calls are ignored.
313 static void count(const Document&, Feature); 314 static void count(const Document&, Feature);
314 static void count(const ExecutionContext*, Feature); 315 static void count(const ExecutionContext*, Feature);
315 void count(CSSParserContext, CSSPropertyID); 316 void count(CSSParserContext, CSSPropertyID);
316 void count(Feature); 317 void count(Feature);
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
352 353
353 void updateMeasurements(); 354 void updateMeasurements();
354 355
355 OwnPtr<BitVector> m_countBits; 356 OwnPtr<BitVector> m_countBits;
356 BitVector m_CSSFeatureBits; 357 BitVector m_CSSFeatureBits;
357 }; 358 };
358 359
359 } // namespace WebCore 360 } // namespace WebCore
360 361
361 #endif // UseCounter_h 362 #endif // UseCounter_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698