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

Side by Side Diff: Source/core/dom/ContextLifecycleObserver.cpp

Issue 18777003: Extract simpler classes for observing context lifecycle and observe Page lifecycle inNavigatorVibra… (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebaselined~ Created 7 years, 5 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
« no previous file with comments | « Source/core/dom/ContextLifecycleObserver.h ('k') | Source/core/dom/Document.h » ('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 * 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 14 matching lines...) Expand all
25 */ 25 */
26 26
27 #include "config.h" 27 #include "config.h"
28 #include "core/dom/ContextLifecycleObserver.h" 28 #include "core/dom/ContextLifecycleObserver.h"
29 29
30 #include "core/dom/ScriptExecutionContext.h" 30 #include "core/dom/ScriptExecutionContext.h"
31 31
32 namespace WebCore { 32 namespace WebCore {
33 33
34 ContextLifecycleObserver::ContextLifecycleObserver(ScriptExecutionContext* scrip tExecutionContext, Type type) 34 ContextLifecycleObserver::ContextLifecycleObserver(ScriptExecutionContext* scrip tExecutionContext, Type type)
35 : m_scriptExecutionContext(0) 35 : LifecycleObserver(scriptExecutionContext)
36 , m_scriptExecutionContext(0)
36 { 37 {
37 observeContext(scriptExecutionContext, type); 38 observeContext(scriptExecutionContext, type);
38 } 39 }
39 40
40 ContextLifecycleObserver::~ContextLifecycleObserver() 41 ContextLifecycleObserver::~ContextLifecycleObserver()
41 { 42 {
42 if (m_scriptExecutionContext) 43 if (m_scriptExecutionContext)
43 observeContext(0, GenericType); 44 observeContext(0, GenericType);
44 } 45 }
45 46
46 void ContextLifecycleObserver::observeContext(ScriptExecutionContext* scriptExec utionContext, Type as) 47 void ContextLifecycleObserver::observeContext(ScriptExecutionContext* scriptExec utionContext, Type as)
47 { 48 {
48 if (m_scriptExecutionContext) { 49 if (m_scriptExecutionContext) {
49 ASSERT(m_scriptExecutionContext->isContextThread()); 50 ASSERT(m_scriptExecutionContext->isContextThread());
50 m_scriptExecutionContext->wasUnobservedBy(this, as); 51 m_scriptExecutionContext->wasUnobservedBy(this, as);
51 } 52 }
52 53
53 m_scriptExecutionContext = scriptExecutionContext; 54 m_scriptExecutionContext = scriptExecutionContext;
55 m_lifecycleContext = scriptExecutionContext;
54 56
55 if (m_scriptExecutionContext) { 57 if (m_scriptExecutionContext) {
56 ASSERT(m_scriptExecutionContext->isContextThread()); 58 ASSERT(m_scriptExecutionContext->isContextThread());
57 m_scriptExecutionContext->wasObservedBy(this, as); 59 m_scriptExecutionContext->wasObservedBy(this, as);
58 } 60 }
59 } 61 }
60 62
61 void ContextLifecycleObserver::contextDestroyed() 63 void ContextLifecycleObserver::contextDestroyed()
62 { 64 {
63 m_scriptExecutionContext = 0; 65 m_scriptExecutionContext = 0;
66
67 LifecycleObserver::contextDestroyed();
64 } 68 }
65 69
66 } // namespace WebCore 70 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/dom/ContextLifecycleObserver.h ('k') | Source/core/dom/Document.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698