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

Side by Side Diff: third_party/WebKit/Source/modules/presentation/PresentationConnectionCallbacks.cpp

Issue 2547053003: s/ passed(...) / WTF::passed(...) / to avoid future ambiguity w/ base::Passed. (Closed)
Patch Set: Rebasing... Created 4 years 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 "modules/presentation/PresentationConnectionCallbacks.h" 5 #include "modules/presentation/PresentationConnectionCallbacks.h"
6 6
7 #include "bindings/core/v8/ScriptPromiseResolver.h" 7 #include "bindings/core/v8/ScriptPromiseResolver.h"
8 #include "core/dom/DOMException.h" 8 #include "core/dom/DOMException.h"
9 #include "modules/presentation/PresentationConnection.h" 9 #include "modules/presentation/PresentationConnection.h"
10 #include "modules/presentation/PresentationError.h" 10 #include "modules/presentation/PresentationError.h"
(...skipping 10 matching lines...) Expand all
21 PresentationRequest* request) 21 PresentationRequest* request)
22 : m_resolver(resolver), m_request(request) { 22 : m_resolver(resolver), m_request(request) {
23 ASSERT(m_resolver); 23 ASSERT(m_resolver);
24 ASSERT(m_request); 24 ASSERT(m_request);
25 } 25 }
26 26
27 void PresentationConnectionCallbacks::onSuccess( 27 void PresentationConnectionCallbacks::onSuccess(
28 std::unique_ptr<WebPresentationConnectionClient> 28 std::unique_ptr<WebPresentationConnectionClient>
29 PresentationConnectionClient) { 29 PresentationConnectionClient) {
30 std::unique_ptr<WebPresentationConnectionClient> result( 30 std::unique_ptr<WebPresentationConnectionClient> result(
31 wrapUnique(PresentationConnectionClient.release())); 31 WTF::wrapUnique(PresentationConnectionClient.release()));
32 32
33 if (!m_resolver->getExecutionContext() || 33 if (!m_resolver->getExecutionContext() ||
34 m_resolver->getExecutionContext()->isContextDestroyed()) 34 m_resolver->getExecutionContext()->isContextDestroyed())
35 return; 35 return;
36 m_resolver->resolve(PresentationConnection::take( 36 m_resolver->resolve(PresentationConnection::take(
37 m_resolver.get(), std::move(result), m_request)); 37 m_resolver.get(), std::move(result), m_request));
38 } 38 }
39 39
40 void PresentationConnectionCallbacks::onError( 40 void PresentationConnectionCallbacks::onError(
41 const WebPresentationError& error) { 41 const WebPresentationError& error) {
42 if (!m_resolver->getExecutionContext() || 42 if (!m_resolver->getExecutionContext() ||
43 m_resolver->getExecutionContext()->isContextDestroyed()) 43 m_resolver->getExecutionContext()->isContextDestroyed())
44 return; 44 return;
45 m_resolver->reject(PresentationError::take(m_resolver.get(), error)); 45 m_resolver->reject(PresentationError::take(m_resolver.get(), error));
46 } 46 }
47 47
48 } // namespace blink 48 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698