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

Side by Side Diff: Source/core/dom/ExecutionContext.h

Issue 916033002: Oilpan: Move LifecycleNotifier's hierarchy to Oilpan's heap Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/dom/DocumentLifecycleNotifier.cpp ('k') | Source/core/dom/ExecutionContext.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved.
3 * Copyright (C) 2012 Google Inc. All Rights Reserved. 3 * Copyright (C) 2012 Google Inc. All Rights Reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 class PendingException; 155 class PendingException;
156 OwnPtrWillBeMember<WillBeHeapVector<OwnPtrWillBeMember<PendingException> > > m_pendingExceptions; 156 OwnPtrWillBeMember<WillBeHeapVector<OwnPtrWillBeMember<PendingException> > > m_pendingExceptions;
157 157
158 bool m_activeDOMObjectsAreSuspended; 158 bool m_activeDOMObjectsAreSuspended;
159 bool m_activeDOMObjectsAreStopped; 159 bool m_activeDOMObjectsAreStopped;
160 160
161 OwnPtrWillBeMember<PublicURLManager> m_publicURLManager; 161 OwnPtrWillBeMember<PublicURLManager> m_publicURLManager;
162 162
163 bool m_strictMixedContentCheckingEnforced; 163 bool m_strictMixedContentCheckingEnforced;
164 164
165 OwnPtr<ContextLifecycleNotifier> m_lifecycleNotifier;
166
167 // Counter that keeps track of how many window interaction calls are allowed 165 // Counter that keeps track of how many window interaction calls are allowed
168 // for this ExecutionContext. Callers are expected to call 166 // for this ExecutionContext. Callers are expected to call
169 // |allowWindowInteraction()| and |consumeWindowInteraction()| in order to 167 // |allowWindowInteraction()| and |consumeWindowInteraction()| in order to
170 // increment and decrement the counter. 168 // increment and decrement the counter.
171 int m_windowInteractionTokens; 169 int m_windowInteractionTokens;
172 }; 170 };
173 171
174 } // namespace blink 172 } // namespace blink
175 173
176 #endif // ExecutionContext_h 174 #endif // ExecutionContext_h
OLDNEW
« no previous file with comments | « Source/core/dom/DocumentLifecycleNotifier.cpp ('k') | Source/core/dom/ExecutionContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698