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

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

Issue 1158433004: Remove Attr child nodes (making Attr a Node, not a ContainerNode) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 7 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 500 matching lines...) Expand 10 before | Expand all | Expand 10 after
511 InputTypeSubmit = 591, 511 InputTypeSubmit = 591,
512 InputTypeSubmitWithValue = 592, 512 InputTypeSubmitWithValue = 592,
513 // The above items are available in M40 branch. 513 // The above items are available in M40 branch.
514 514
515 SetReferrerPolicy = 593, 515 SetReferrerPolicy = 593,
516 MouseEventWhich = 595, 516 MouseEventWhich = 595,
517 UIEventCharCode = 596, 517 UIEventCharCode = 596,
518 UIEventKeyCode = 597, 518 UIEventKeyCode = 597,
519 UIEventWhich = 598, 519 UIEventWhich = 598,
520 TextWholeText = 599, 520 TextWholeText = 599,
521 AttrChildAccess = 600,
522 AttrChildChange = 601,
523 NotificationCloseEvent = 603, 521 NotificationCloseEvent = 603,
524 CSSKeyframesRuleAppendRule = 604, 522 CSSKeyframesRuleAppendRule = 604,
525 CSSKeyframesRuleInsertRule = 605, 523 CSSKeyframesRuleInsertRule = 605,
526 StyleMedia = 606, 524 StyleMedia = 606,
527 StyleMediaType = 607, 525 StyleMediaType = 607,
528 StyleMediaMatchMedium = 608, 526 StyleMediaMatchMedium = 608,
529 MixedContentPresent = 609, 527 MixedContentPresent = 609,
530 MixedContentBlockable = 610, 528 MixedContentBlockable = 610,
531 MixedContentAudio = 611, 529 MixedContentAudio = 611,
532 MixedContentDownload = 612, 530 MixedContentDownload = 612,
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
793 791
794 bool hasRecordedMeasurement(Feature feature) const { return m_countBits.hasR ecordedMeasurement(feature); } 792 bool hasRecordedMeasurement(Feature feature) const { return m_countBits.hasR ecordedMeasurement(feature); }
795 793
796 CountBits m_countBits; 794 CountBits m_countBits;
797 BitVector m_CSSFeatureBits; 795 BitVector m_CSSFeatureBits;
798 }; 796 };
799 797
800 } // namespace blink 798 } // namespace blink
801 799
802 #endif // UseCounter_h 800 #endif // UseCounter_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698