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

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

Issue 159863002: Remove CSS regions support, keeping a bare minimum to support "region-based" multicol. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 10 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 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 CSSStyleDeclarationFloatPropertyName = 189, // Pending removal in CSSOM. 253 CSSStyleDeclarationFloatPropertyName = 189, // Pending removal in CSSOM.
254 InputTypeText = 190, 254 InputTypeText = 190,
255 InputTypeTextMaxLength = 191, 255 InputTypeTextMaxLength = 191,
256 InputTypePassword = 192, 256 InputTypePassword = 192,
257 InputTypePasswordMaxLength = 193, 257 InputTypePasswordMaxLength = 193,
258 SVGInstanceRoot = 194, 258 SVGInstanceRoot = 194,
259 ShowModalDialog = 195, 259 ShowModalDialog = 195,
260 PrefixedPageVisibility = 196, 260 PrefixedPageVisibility = 196,
261 HTMLFrameElementLocation = 197, 261 HTMLFrameElementLocation = 197,
262 CSSStyleSheetInsertRuleOptionalArg = 198, // Inconsistent with the speci fication and other browsers. 262 CSSStyleSheetInsertRuleOptionalArg = 198, // Inconsistent with the speci fication and other browsers.
263 CSSWebkitRegionAtRule = 199, // @region rule changed to ::region()
264 DocumentBeforeUnloadRegistered = 200, 263 DocumentBeforeUnloadRegistered = 200,
265 DocumentBeforeUnloadFired = 201, 264 DocumentBeforeUnloadFired = 201,
266 DocumentUnloadRegistered = 202, 265 DocumentUnloadRegistered = 202,
267 DocumentUnloadFired = 203, 266 DocumentUnloadFired = 203,
268 SVGLocatableNearestViewportElement = 204, 267 SVGLocatableNearestViewportElement = 204,
269 SVGLocatableFarthestViewportElement = 205, 268 SVGLocatableFarthestViewportElement = 205,
270 IsIndexElement = 206, 269 IsIndexElement = 206,
271 HTMLHeadElementProfile = 207, 270 HTMLHeadElementProfile = 207,
272 OverflowChangedEvent = 208, 271 OverflowChangedEvent = 208,
273 SVGPointMatrixTransform = 209, 272 SVGPointMatrixTransform = 209,
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
378 377
379 void updateMeasurements(); 378 void updateMeasurements();
380 379
381 OwnPtr<BitVector> m_countBits; 380 OwnPtr<BitVector> m_countBits;
382 BitVector m_CSSFeatureBits; 381 BitVector m_CSSFeatureBits;
383 }; 382 };
384 383
385 } // namespace WebCore 384 } // namespace WebCore
386 385
387 #endif // UseCounter_h 386 #endif // UseCounter_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698