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

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

Issue 822863003: LifecycleObserver::contextDestroyed should be explicitly dispatched promptly when a context is dest… (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 12 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/Document.cpp ('k') | Source/core/frame/LocalDOMWindow.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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 bool isWindowFocusAllowed() const; 141 bool isWindowFocusAllowed() const;
142 142
143 protected: 143 protected:
144 ExecutionContext(); 144 ExecutionContext();
145 virtual ~ExecutionContext(); 145 virtual ~ExecutionContext();
146 146
147 virtual const KURL& virtualURL() const = 0; 147 virtual const KURL& virtualURL() const = 0;
148 virtual KURL virtualCompleteURL(const String&) const = 0; 148 virtual KURL virtualCompleteURL(const String&) const = 0;
149 149
150 ContextLifecycleNotifier& lifecycleNotifier(); 150 ContextLifecycleNotifier& lifecycleNotifier();
151 void contextDestroyed()
152 {
153 LifecycleContext<ExecutionContext>::contextDestroyed();
154 }
151 155
152 private: 156 private:
153 friend class DOMTimer; // For installNewTimeout() and removeTimeoutByID() be low. 157 friend class DOMTimer; // For installNewTimeout() and removeTimeoutByID() be low.
154 158
155 bool dispatchErrorEvent(PassRefPtrWillBeRawPtr<ErrorEvent>, AccessControlSta tus); 159 bool dispatchErrorEvent(PassRefPtrWillBeRawPtr<ErrorEvent>, AccessControlSta tus);
156 160
157 #if !ENABLE(OILPAN) 161 #if !ENABLE(OILPAN)
158 virtual void refExecutionContext() = 0; 162 virtual void refExecutionContext() = 0;
159 virtual void derefExecutionContext() = 0; 163 virtual void derefExecutionContext() = 0;
160 #endif 164 #endif
(...skipping 29 matching lines...) Expand all
190 // Counter that keeps track of how many window focus calls are allowed for 194 // Counter that keeps track of how many window focus calls are allowed for
191 // this ExecutionContext. Callers are expected to call |allowWindowFocus()| 195 // this ExecutionContext. Callers are expected to call |allowWindowFocus()|
192 // and |consumeWindowFocus()| in order to increment and decrement the 196 // and |consumeWindowFocus()| in order to increment and decrement the
193 // counter. 197 // counter.
194 int m_windowFocusTokens; 198 int m_windowFocusTokens;
195 }; 199 };
196 200
197 } // namespace blink 201 } // namespace blink
198 202
199 #endif // ExecutionContext_h 203 #endif // ExecutionContext_h
OLDNEW
« no previous file with comments | « Source/core/dom/Document.cpp ('k') | Source/core/frame/LocalDOMWindow.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698