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

Unified Diff: third_party/WebKit/Source/modules/payments/PaymentManager.h

Issue 2785523003: PaymentHandler: Rename PaymentAppManager to PaymentManager. (Closed)
Patch Set: PaymentHandler: Rename PaymentAppManager to PaymentManager. Created 3 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/payments/PaymentManager.h
diff --git a/third_party/WebKit/Source/modules/payments/PaymentAppManager.h b/third_party/WebKit/Source/modules/payments/PaymentManager.h
similarity index 73%
rename from third_party/WebKit/Source/modules/payments/PaymentAppManager.h
rename to third_party/WebKit/Source/modules/payments/PaymentManager.h
index fb48b6c059f2babaa20eeb5000ea8534b31f7bc2..fb7f1cc437cc34cc9f471c60b0c29b2718976257 100644
--- a/third_party/WebKit/Source/modules/payments/PaymentAppManager.h
+++ b/third_party/WebKit/Source/modules/payments/PaymentManager.h
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef PaymentAppManager_h
-#define PaymentAppManager_h
+#ifndef PaymentManager_h
+#define PaymentManager_h
#include "bindings/core/v8/ScriptPromise.h"
#include "bindings/core/v8/ScriptWrappable.h"
@@ -18,14 +18,14 @@ class ScriptPromiseResolver;
class ScriptState;
class ServiceWorkerRegistration;
-class MODULES_EXPORT PaymentAppManager final
- : public GarbageCollectedFinalized<PaymentAppManager>,
+class MODULES_EXPORT PaymentManager final
+ : public GarbageCollectedFinalized<PaymentManager>,
public ScriptWrappable {
DEFINE_WRAPPERTYPEINFO();
- WTF_MAKE_NONCOPYABLE(PaymentAppManager);
+ WTF_MAKE_NONCOPYABLE(PaymentManager);
public:
- static PaymentAppManager* create(ServiceWorkerRegistration*);
+ static PaymentManager* create(ServiceWorkerRegistration*);
ScriptPromise setManifest(ScriptState*, const PaymentAppManifest&);
ScriptPromise getManifest(ScriptState*);
@@ -33,7 +33,7 @@ class MODULES_EXPORT PaymentAppManager final
DECLARE_TRACE();
private:
- explicit PaymentAppManager(ServiceWorkerRegistration*);
+ explicit PaymentManager(ServiceWorkerRegistration*);
void onSetManifest(ScriptPromiseResolver*,
payments::mojom::blink::PaymentAppManifestError);
@@ -43,9 +43,9 @@ class MODULES_EXPORT PaymentAppManager final
void onServiceConnectionError();
Member<ServiceWorkerRegistration> m_registration;
- payments::mojom::blink::PaymentAppManagerPtr m_manager;
+ payments::mojom::blink::PaymentManagerPtr m_manager;
};
} // namespace blink
-#endif // PaymentAppManager_h
+#endif // PaymentManager_h

Powered by Google App Engine
This is Rietveld 408576698