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

Issue 2898223002: PaymentHandler: Rename PaymentAppRequest with PaymentRequestEventData. (Closed)

Created:
3 years, 7 months ago by zino
Modified:
3 years, 6 months ago
CC:
Aaron Boodman, abarth-chromium, blink-reviews, blink-reviews-api_chromium.org, blink-worker-reviews_chromium.org, chromium-reviews, darin (slow to review), darin-cc_chromium.org, dglazkov+blink, gogerald+paymentswatch_chromium.org, haraken, horo+watch_chromium.org, jam, jsbell+serviceworker_chromium.org, kinuko+serviceworker, kinuko+watch, mahmadi+paymentswatch_chromium.org, michaeln, mlamouri+watch-content_chromium.org, nhiroki, qsr+mojo_chromium.org, rouslan+payments_chromium.org, sebsg+paymentswatch_chromium.org, serviceworker-reviews, shimazu+serviceworker_chromium.org, tzik, viettrungluu+watch_chromium.org, yzshen+watch_chromium.org
Target Ref:
refs/heads/master
Project:
chromium
Visibility:
Public.

Description

PaymentHandler: Rename PaymentAppRequest with PaymentRequestEventData. In previous CL[1], the PaymentAppRequest was merged with PaymentRequestEvent due to spec change. So, we need to change the name appropriately to fit the current implementation. Also, this feature is still behind runtime flag (PaymentApp). The related spec link: https://w3c.github.io/payment-handler/ [1] https://codereview.chromium.org/2887713002/ BUG=661608, 720027 Review-Url: https://codereview.chromium.org/2898223002 Cr-Commit-Position: refs/heads/master@{#477316} Committed: https://chromium.googlesource.com/chromium/src/+/745f3dff09793d3a5afe793a2599eadb341d2ee0

Patch Set 1 #

Patch Set 2 : more places #

Total comments: 6

Patch Set 3 : Rename #

Patch Set 4 : Rename #

Unified diffs Side-by-side diffs Delta from patch set Stats (+148 lines, -422 lines) Patch
M chrome/browser/android/payments/service_worker_payment_app_bridge.cc View 1 4 chunks +15 lines, -16 lines 0 comments Download
M components/payments/mojom/payment_app.mojom View 1 chunk +1 line, -1 line 0 comments Download
M content/browser/payments/payment_app_browsertest.cc View 1 3 chunks +14 lines, -14 lines 0 comments Download
M content/browser/payments/payment_app_content_unittest_base.cc View 1 1 chunk +2 lines, -2 lines 0 comments Download
M content/browser/payments/payment_app_provider_impl.h View 1 1 chunk +1 line, -1 line 0 comments Download
M content/browser/payments/payment_app_provider_impl.cc View 1 6 chunks +8 lines, -8 lines 0 comments Download
M content/browser/payments/payment_app_provider_impl_unittest.cc View 1 2 chunks +8 lines, -8 lines 0 comments Download
M content/browser/service_worker/embedded_worker_test_helper.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M content/browser/service_worker/embedded_worker_test_helper.cc View 1 3 chunks +5 lines, -5 lines 0 comments Download
M content/common/service_worker/service_worker_event_dispatcher.mojom View 1 chunk +1 line, -1 line 0 comments Download
M content/public/browser/payment_app_provider.h View 1 1 chunk +1 line, -1 line 0 comments Download
M content/renderer/service_worker/service_worker_context_client.h View 1 1 chunk +1 line, -1 line 0 comments Download
M content/renderer/service_worker/service_worker_context_client.cc View 1 3 chunks +5 lines, -5 lines 0 comments Download
M content/renderer/service_worker/service_worker_type_converters.h View 2 chunks +5 lines, -5 lines 0 comments Download
M content/renderer/service_worker/service_worker_type_converters.cc View 1 chunk +5 lines, -5 lines 0 comments Download
M third_party/WebKit/Source/modules/BUILD.gn View 1 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/modules/modules_idl_files.gni View 1 2 chunks +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/modules/payments/BUILD.gn View 2 chunks +2 lines, -2 lines 0 comments Download
D third_party/WebKit/Source/modules/payments/PaymentAppRequest.idl View 1 chunk +0 lines, -17 lines 0 comments Download
D third_party/WebKit/Source/modules/payments/PaymentAppRequestConversion.h View 1 chunk +0 lines, -26 lines 0 comments Download
D third_party/WebKit/Source/modules/payments/PaymentAppRequestConversion.cpp View 1 chunk +0 lines, -115 lines 0 comments Download
D third_party/WebKit/Source/modules/payments/PaymentAppRequestConversionTest.cpp View 1 chunk +0 lines, -91 lines 0 comments Download
M third_party/WebKit/Source/modules/payments/PaymentRequestEvent.h View 1 3 chunks +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/modules/payments/PaymentRequestEvent.cpp View 1 2 chunks +10 lines, -10 lines 0 comments Download
A + third_party/WebKit/Source/modules/payments/PaymentRequestEventDataConversion.h View 1 2 3 1 chunk +10 lines, -9 lines 0 comments Download
A + third_party/WebKit/Source/modules/payments/PaymentRequestEventDataConversion.cpp View 1 2 chunks +18 lines, -17 lines 0 comments Download
A + third_party/WebKit/Source/modules/payments/PaymentRequestEventDataConversionTest.cpp View 3 chunks +10 lines, -8 lines 0 comments Download
A + third_party/WebKit/Source/modules/payments/PaymentRequestEventInit.idl View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/web/ServiceWorkerGlobalScopeProxy.h View 1 chunk +2 lines, -1 line 0 comments Download
M third_party/WebKit/Source/web/ServiceWorkerGlobalScopeProxy.cpp View 3 chunks +4 lines, -4 lines 0 comments Download
M third_party/WebKit/public/BUILD.gn View 1 1 chunk +1 line, -1 line 0 comments Download
D third_party/WebKit/public/platform/modules/payments/WebPaymentAppRequest.h View 1 chunk +0 lines, -29 lines 0 comments Download
A + third_party/WebKit/public/platform/modules/payments/WebPaymentRequestEventData.h View 1 2 3 chunks +4 lines, -5 lines 0 comments Download
M third_party/WebKit/public/web/modules/serviceworker/WebServiceWorkerContextProxy.h View 2 chunks +4 lines, -3 lines 0 comments Download

Messages

Total messages: 25 (12 generated)
zino
rouslan@, in my previous CL[1], you thought that the PaymentAppRequest should be renamed with other ...
3 years, 7 months ago (2017-05-25 18:15:34 UTC) #3
please use gerrit instead
I will trust your judgement. What do you prefer?
3 years, 7 months ago (2017-05-25 19:02:58 UTC) #4
zino
PTAL rouslan@, gogerald1@ for payments (To avoid conflicts, I'll wait for landing Ganggui's openWindow CL) ...
3 years, 6 months ago (2017-06-02 16:37:47 UTC) #9
please use gerrit instead
Please put the spec link in the CL and note that this feature is behind ...
3 years, 6 months ago (2017-06-02 17:05:04 UTC) #10
zino
https://codereview.chromium.org/2898223002/diff/20001/third_party/WebKit/Source/modules/payments/PaymentRequestEventDataConversion.h File third_party/WebKit/Source/modules/payments/PaymentRequestEventDataConversion.h (right): https://codereview.chromium.org/2898223002/diff/20001/third_party/WebKit/Source/modules/payments/PaymentRequestEventDataConversion.h#newcode1 third_party/WebKit/Source/modules/payments/PaymentRequestEventDataConversion.h:1: // Copyright 2016 The Chromium Authors. All rights reserved. ...
3 years, 6 months ago (2017-06-02 17:23:49 UTC) #13
please use gerrit instead
lgtm
3 years, 6 months ago (2017-06-02 17:34:09 UTC) #14
Robert Sesek
mojom lgtm
3 years, 6 months ago (2017-06-02 17:56:50 UTC) #15
haraken
LGTM
3 years, 6 months ago (2017-06-05 02:07:07 UTC) #16
zino
jochen@, Gentle Ping :)
3 years, 6 months ago (2017-06-06 04:12:45 UTC) #17
jochen (gone - plz use gerrit)
lgtm
3 years, 6 months ago (2017-06-06 14:42:42 UTC) #18
gogerald1
lgtm
3 years, 6 months ago (2017-06-06 14:50:36 UTC) #19
commit-bot: I haz the power
CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2898223002/60001
3 years, 6 months ago (2017-06-06 14:54:56 UTC) #21
commit-bot: I haz the power
3 years, 6 months ago (2017-06-06 17:24:09 UTC) #25
Message was sent while issue was closed.
Committed patchset #4 (id:60001) as
https://chromium.googlesource.com/chromium/src/+/745f3dff09793d3a5afe793a2599...

Powered by Google App Engine
This is Rietveld 408576698