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

Side by Side Diff: third_party/WebKit/Source/core/dom/custom/CustomElementProcessingStack.cpp

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 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 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 25 matching lines...) Expand all
36 36
37 namespace blink { 37 namespace blink {
38 38
39 size_t CustomElementProcessingStack::s_elementQueueStart = 0; 39 size_t CustomElementProcessingStack::s_elementQueueStart = 0;
40 40
41 // The base of the stack has a null sentinel value. 41 // The base of the stack has a null sentinel value.
42 size_t CustomElementProcessingStack::s_elementQueueEnd = kNumSentinels; 42 size_t CustomElementProcessingStack::s_elementQueueEnd = kNumSentinels;
43 43
44 CustomElementProcessingStack& CustomElementProcessingStack::instance() 44 CustomElementProcessingStack& CustomElementProcessingStack::instance()
45 { 45 {
46 DEFINE_STATIC_LOCAL(OwnPtrWillBePersistent<CustomElementProcessingStack>, in stance, (adoptPtrWillBeNoop(new CustomElementProcessingStack()))); 46 DEFINE_STATIC_LOCAL(Persistent<CustomElementProcessingStack>, instance, ((ne w CustomElementProcessingStack())));
47 return *instance; 47 return *instance;
48 } 48 }
49 49
50 // Dispatches callbacks when popping the processing stack. 50 // Dispatches callbacks when popping the processing stack.
51 void CustomElementProcessingStack::processElementQueueAndPop() 51 void CustomElementProcessingStack::processElementQueueAndPop()
52 { 52 {
53 instance().processElementQueueAndPop(s_elementQueueStart, s_elementQueueEnd) ; 53 instance().processElementQueueAndPop(s_elementQueueStart, s_elementQueueEnd) ;
54 } 54 }
55 55
56 void CustomElementProcessingStack::processElementQueueAndPop(size_t start, size_ t end) 56 void CustomElementProcessingStack::processElementQueueAndPop(size_t start, size_ t end)
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 m_flattenedProcessingStack.append(callbackQueue); 90 m_flattenedProcessingStack.append(callbackQueue);
91 ++s_elementQueueEnd; 91 ++s_elementQueueEnd;
92 } 92 }
93 93
94 DEFINE_TRACE(CustomElementProcessingStack) 94 DEFINE_TRACE(CustomElementProcessingStack)
95 { 95 {
96 visitor->trace(m_flattenedProcessingStack); 96 visitor->trace(m_flattenedProcessingStack);
97 } 97 }
98 98
99 } // namespace blink 99 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698