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/PresentationAvailabilityCallbacks.cpp

Issue 1773813007: blink: Rename modules/ method to prefix with get when they collide. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: clash-modules: rebase-fixes Created 4 years, 9 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/PresentationAvailabilityCallbacks.h" 5 #include "modules/presentation/PresentationAvailabilityCallbacks.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/PresentationAvailability.h" 9 #include "modules/presentation/PresentationAvailability.h"
10 #include "modules/presentation/PresentationError.h" 10 #include "modules/presentation/PresentationError.h"
11 #include "public/platform/modules/presentation/WebPresentationError.h" 11 #include "public/platform/modules/presentation/WebPresentationError.h"
12 12
13 namespace blink { 13 namespace blink {
14 14
15 PresentationAvailabilityCallbacks::PresentationAvailabilityCallbacks(ScriptPromi seResolver* resolver, const KURL& url) 15 PresentationAvailabilityCallbacks::PresentationAvailabilityCallbacks(ScriptPromi seResolver* resolver, const KURL& url)
16 : m_resolver(resolver) 16 : m_resolver(resolver)
17 , m_url(url) 17 , m_url(url)
18 { 18 {
19 ASSERT(m_resolver); 19 ASSERT(m_resolver);
20 } 20 }
21 21
22 PresentationAvailabilityCallbacks::~PresentationAvailabilityCallbacks() 22 PresentationAvailabilityCallbacks::~PresentationAvailabilityCallbacks()
23 { 23 {
24 } 24 }
25 25
26 void PresentationAvailabilityCallbacks::onSuccess(bool value) 26 void PresentationAvailabilityCallbacks::onSuccess(bool value)
27 { 27 {
28 if (!m_resolver->executionContext() || m_resolver->executionContext()->activ eDOMObjectsAreStopped()) 28 if (!m_resolver->getExecutionContext() || m_resolver->getExecutionContext()- >activeDOMObjectsAreStopped())
29 return; 29 return;
30 m_resolver->resolve(PresentationAvailability::take(m_resolver.get(), m_url, value)); 30 m_resolver->resolve(PresentationAvailability::take(m_resolver.get(), m_url, value));
31 } 31 }
32 32
33 void PresentationAvailabilityCallbacks::onError(const WebPresentationError& erro r) 33 void PresentationAvailabilityCallbacks::onError(const WebPresentationError& erro r)
34 { 34 {
35 if (!m_resolver->executionContext() || m_resolver->executionContext()->activ eDOMObjectsAreStopped()) 35 if (!m_resolver->getExecutionContext() || m_resolver->getExecutionContext()- >activeDOMObjectsAreStopped())
36 return; 36 return;
37 m_resolver->reject(PresentationError::take(m_resolver.get(), error)); 37 m_resolver->reject(PresentationError::take(m_resolver.get(), error));
38 } 38 }
39 39
40 } // namespace blink 40 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698