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

Side by Side Diff: sky/engine/core/frame/UseCounter.h

Issue 697363002: Remove DOMImplementation. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 ElementPrefixedMatchesSelector = 217, 185 ElementPrefixedMatchesSelector = 217,
186 CSSStyleSheetRules = 219, 186 CSSStyleSheetRules = 219,
187 CSSStyleSheetAddRule = 220, 187 CSSStyleSheetAddRule = 220,
188 CSSStyleSheetRemoveRule = 221, 188 CSSStyleSheetRemoveRule = 221,
189 // The above items are available in M33 branch. 189 // The above items are available in M33 branch.
190 190
191 InitMessageEvent = 222, 191 InitMessageEvent = 222,
192 ElementSetPrefix = 224, // Element.prefix is readonly in DOM4. 192 ElementSetPrefix = 224, // Element.prefix is readonly in DOM4.
193 CSSStyleDeclarationGetPropertyCSSValue = 225, 193 CSSStyleDeclarationGetPropertyCSSValue = 225,
194 PrefixedMediaCancelKeyRequest = 229, 194 PrefixedMediaCancelKeyRequest = 229,
195 DOMImplementationHasFeature = 230,
196 DOMImplementationHasFeatureReturnFalse = 231,
197 CanPlayTypeKeySystem = 232, 195 CanPlayTypeKeySystem = 232,
198 PrefixedDevicePixelRatioMediaFeature = 233, 196 PrefixedDevicePixelRatioMediaFeature = 233,
199 PrefixedMaxDevicePixelRatioMediaFeature = 234, 197 PrefixedMaxDevicePixelRatioMediaFeature = 234,
200 PrefixedMinDevicePixelRatioMediaFeature = 235, 198 PrefixedMinDevicePixelRatioMediaFeature = 235,
201 PrefixedTransform3dMediaFeature = 237, 199 PrefixedTransform3dMediaFeature = 237,
202 PrefixedStorageQuota = 240, 200 PrefixedStorageQuota = 240,
203 ResetReferrerPolicy = 243, 201 ResetReferrerPolicy = 243,
204 CaseInsensitiveAttrSelectorMatch = 244, // Case-insensitivity dropped fr om specification. 202 CaseInsensitiveAttrSelectorMatch = 244, // Case-insensitivity dropped fr om specification.
205 FormNameAccessForImageElement = 246, 203 FormNameAccessForImageElement = 246,
206 FormNameAccessForPastNamesMap = 247, 204 FormNameAccessForPastNamesMap = 247,
(...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after
471 469
472 void updateMeasurements(); 470 void updateMeasurements();
473 471
474 OwnPtr<BitVector> m_countBits; 472 OwnPtr<BitVector> m_countBits;
475 BitVector m_CSSFeatureBits; 473 BitVector m_CSSFeatureBits;
476 }; 474 };
477 475
478 } // namespace blink 476 } // namespace blink
479 477
480 #endif // UseCounter_h 478 #endif // UseCounter_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698