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

Side by Side Diff: sky/engine/bindings/core/v8/ScriptPromiseResolver.cpp

Issue 746023002: Make absolute and sort all Sky headers (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "config.h" 5 #include "sky/engine/config.h"
6 #include "bindings/core/v8/ScriptPromiseResolver.h" 6 #include "sky/engine/bindings/core/v8/ScriptPromiseResolver.h"
7 7
8 #include "bindings/core/v8/V8RecursionScope.h" 8 #include "sky/engine/bindings/core/v8/V8RecursionScope.h"
9 9
10 namespace blink { 10 namespace blink {
11 11
12 ScriptPromiseResolver::ScriptPromiseResolver(ScriptState* scriptState) 12 ScriptPromiseResolver::ScriptPromiseResolver(ScriptState* scriptState)
13 : ActiveDOMObject(scriptState->executionContext()) 13 : ActiveDOMObject(scriptState->executionContext())
14 , m_state(Pending) 14 , m_state(Pending)
15 , m_scriptState(scriptState) 15 , m_scriptState(scriptState)
16 , m_mode(Default) 16 , m_mode(Default)
17 , m_timer(this, &ScriptPromiseResolver::onTimerFired) 17 , m_timer(this, &ScriptPromiseResolver::onTimerFired)
18 , m_resolver(scriptState) 18 , m_resolver(scriptState)
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 // |this| may be deleted here, but it is safe to check |state| because 89 // |this| may be deleted here, but it is safe to check |state| because
90 // it doesn't depend on |this|. When |this| is deleted, |state| can't be 90 // it doesn't depend on |this|. When |this| is deleted, |state| can't be
91 // |Resolving| nor |Rejecting| and hence |this->deref()| can't be executed. 91 // |Resolving| nor |Rejecting| and hence |this->deref()| can't be executed.
92 if (state == Resolving || state == Rejecting) { 92 if (state == Resolving || state == Rejecting) {
93 // |ref| was called in |resolveOrReject|. 93 // |ref| was called in |resolveOrReject|.
94 deref(); 94 deref();
95 } 95 }
96 } 96 }
97 97
98 } // namespace blink 98 } // namespace blink
OLDNEW
« no previous file with comments | « sky/engine/bindings/core/v8/ScriptPromiseResolver.h ('k') | sky/engine/bindings/core/v8/ScriptRegexp.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698