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

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

Issue 2050123002: Remove OwnPtr from Blink. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: First attempt to land. Created 4 years, 6 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
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 "modules/presentation/PresentationConnection.h" 8 #include "modules/presentation/PresentationConnection.h"
9 #include "modules/presentation/PresentationError.h" 9 #include "modules/presentation/PresentationError.h"
10 #include "modules/presentation/PresentationRequest.h" 10 #include "modules/presentation/PresentationRequest.h"
11 #include "public/platform/modules/presentation/WebPresentationConnectionClient.h " 11 #include "public/platform/modules/presentation/WebPresentationConnectionClient.h "
12 #include "public/platform/modules/presentation/WebPresentationError.h" 12 #include "public/platform/modules/presentation/WebPresentationError.h"
13 #include "wtf/PtrUtil.h"
14 #include <memory>
13 15
14 namespace blink { 16 namespace blink {
15 17
16 PresentationConnectionCallbacks::PresentationConnectionCallbacks(ScriptPromiseRe solver* resolver, PresentationRequest* request) 18 PresentationConnectionCallbacks::PresentationConnectionCallbacks(ScriptPromiseRe solver* resolver, PresentationRequest* request)
17 : m_resolver(resolver) 19 : m_resolver(resolver)
18 , m_request(request) 20 , m_request(request)
19 { 21 {
20 ASSERT(m_resolver); 22 ASSERT(m_resolver);
21 ASSERT(m_request); 23 ASSERT(m_request);
22 } 24 }
23 25
24 void PresentationConnectionCallbacks::onSuccess(std::unique_ptr<WebPresentationC onnectionClient> PresentationConnectionClient) 26 void PresentationConnectionCallbacks::onSuccess(std::unique_ptr<WebPresentationC onnectionClient> PresentationConnectionClient)
25 { 27 {
26 OwnPtr<WebPresentationConnectionClient> result(adoptPtr(PresentationConnecti onClient.release())); 28 std::unique_ptr<WebPresentationConnectionClient> result(wrapUnique(Presentat ionConnectionClient.release()));
27 29
28 if (!m_resolver->getExecutionContext() || m_resolver->getExecutionContext()- >activeDOMObjectsAreStopped()) 30 if (!m_resolver->getExecutionContext() || m_resolver->getExecutionContext()- >activeDOMObjectsAreStopped())
29 return; 31 return;
30 m_resolver->resolve(PresentationConnection::take(m_resolver.get(), std::move (result), m_request)); 32 m_resolver->resolve(PresentationConnection::take(m_resolver.get(), std::move (result), m_request));
31 } 33 }
32 34
33 void PresentationConnectionCallbacks::onError(const WebPresentationError& error) 35 void PresentationConnectionCallbacks::onError(const WebPresentationError& error)
34 { 36 {
35 if (!m_resolver->getExecutionContext() || m_resolver->getExecutionContext()- >activeDOMObjectsAreStopped()) 37 if (!m_resolver->getExecutionContext() || m_resolver->getExecutionContext()- >activeDOMObjectsAreStopped())
36 return; 38 return;
37 m_resolver->reject(PresentationError::take(m_resolver.get(), error)); 39 m_resolver->reject(PresentationError::take(m_resolver.get(), error));
38 } 40 }
39 41
40 } // namespace blink 42 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698