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

Issue 2937733003: [CRD iOS] Branching internal and external implementations (Closed)

Created:
3 years, 6 months ago by Yuwei
Modified:
3 years, 6 months ago
Reviewers:
nicholss
CC:
chromium-reviews, marq+watch_chromium.org, ios-reviews_chromium.org, chromoting-reviews_chromium.org
Target Ref:
refs/heads/master
Project:
chromium
Visibility:
Public.

Description

[CRD iOS] Branching internal and external implementations This CL: * Introduces the RemotingResourceFactory class for providing different resources depending on whether it's an external or internal build. * Adds an AppInitializer for initializing common resources. BUG=731851 Review-Url: https://codereview.chromium.org/2937733003 Cr-Commit-Position: refs/heads/master@{#481006} Committed: https://chromium.googlesource.com/chromium/src/+/4a13a977ca3b4db548fae2cf14990e797688bb79

Patch Set 1 : add comment #

Total comments: 1

Patch Set 2 : Merge w/ ToT #

Total comments: 9

Patch Set 3 : Remove AppInitializer #

Patch Set 4 : Implement the Chromium PanelViewController #

Patch Set 5 : Add comment #

Patch Set 6 : Implement PanelViewControllerFactory #

Patch Set 7 : Move some initialization code to AppDelegate #

Total comments: 2

Patch Set 8 : Use AppViewController #

Patch Set 9 : currentDelegate => instance #

Patch Set 10 : Cleanup #

Patch Set 11 : Add comments #

Patch Set 12 : Merge branch 'master' into feat-menu-factory #

Patch Set 13 : Resolve feedback #

Patch Set 14 : Use the final BUILD #

Patch Set 15 : Add the requestSignIn method #

Total comments: 10

Patch Set 16 : Resolve Feedback #

Patch Set 17 : Merge branch 'master' into feat-menu-factory #

Patch Set 18 : Fix presenting check #

Unified diffs Side-by-side diffs Delta from patch set Stats (+151 lines, -11 lines) Patch
M ios/third_party/material_components_ios/BUILD.gn View 1 1 chunk +2 lines, -0 lines 0 comments Download
M remoting/ios/app/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 3 chunks +5 lines, -3 lines 0 comments Download
M remoting/ios/app/app_delegate.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +5 lines, -0 lines 0 comments Download
M remoting/ios/app/app_delegate.mm View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 2 chunks +34 lines, -1 line 0 comments Download
A remoting/ios/app/app_view_controller.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +33 lines, -0 lines 0 comments Download
A remoting/ios/app/app_view_controller_chromium.mm View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 chunk +69 lines, -0 lines 0 comments Download
M remoting/ios/app/remoting_view_controller.mm View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 3 chunks +3 lines, -7 lines 0 comments Download

Dependent Patchsets:

Messages

Total messages: 35 (21 generated)
Yuwei
PTAL thanks! For the internal usage/implementation, please see: https://chromereviews.googleplex.com/593117014 https://codereview.chromium.org/2937733003/diff/60001/remoting/ios/app/resources/Assets.xcassets/ic_refresh.imageset/Contents.json File remoting/ios/app/resources/Assets.xcassets/ic_refresh.imageset/Contents.json (left): https://codereview.chromium.org/2937733003/diff/60001/remoting/ios/app/resources/Assets.xcassets/ic_refresh.imageset/Contents.json#oldcode2 remoting/ios/app/resources/Assets.xcassets/ic_refresh.imageset/Contents.json:2: ...
3 years, 6 months ago (2017-06-13 23:27:22 UTC) #6
nicholss
On 2017/06/13 23:27:22, Yuwei wrote: > PTAL thanks! > > For the internal usage/implementation, please ...
3 years, 6 months ago (2017-06-14 15:19:18 UTC) #7
nicholss
I do not think the remoting_resource_factory is a good idea because it adds complexity where ...
3 years, 6 months ago (2017-06-14 15:37:59 UTC) #8
Yuwei
PTAL On 2017/06/14 15:37:59, nicholss wrote: > I do not think the remoting_resource_factory is a ...
3 years, 6 months ago (2017-06-15 07:02:08 UTC) #9
nicholss
On 2017/06/15 07:02:08, Yuwei wrote: > PTAL > > On 2017/06/14 15:37:59, nicholss wrote: > ...
3 years, 6 months ago (2017-06-15 15:14:19 UTC) #10
nicholss
https://codereview.chromium.org/2937733003/diff/180001/remoting/ios/app/app_delegate.h File remoting/ios/app/app_delegate.h (right): https://codereview.chromium.org/2937733003/diff/180001/remoting/ios/app/app_delegate.h#newcode18 remoting/ios/app/app_delegate.h:18: @property(class, strong, nonatomic, readonly) AppDelegate* currentDelegate; I see this ...
3 years, 6 months ago (2017-06-15 15:15:16 UTC) #11
Yuwei
PTAL > The pattern used elsewhere is to not make a new class for the ...
3 years, 6 months ago (2017-06-15 21:22:18 UTC) #12
Yuwei
PTAL thanks! Fixed according to our discussion. I'll need to temporary disable the private target ...
3 years, 6 months ago (2017-06-15 23:38:12 UTC) #17
nicholss
https://codereview.chromium.org/2937733003/diff/340001/remoting/ios/app/app_view_controller.h File remoting/ios/app/app_view_controller.h (right): https://codereview.chromium.org/2937733003/diff/340001/remoting/ios/app/app_view_controller.h#newcode16 remoting/ios/app/app_view_controller.h:16: // For adding new method, please make sure the ...
3 years, 6 months ago (2017-06-19 16:32:10 UTC) #18
Yuwei
PTAL thanks! https://codereview.chromium.org/2937733003/diff/340001/remoting/ios/app/app_view_controller.h File remoting/ios/app/app_view_controller.h (right): https://codereview.chromium.org/2937733003/diff/340001/remoting/ios/app/app_view_controller.h#newcode16 remoting/ios/app/app_view_controller.h:16: // For adding new method, please make ...
3 years, 6 months ago (2017-06-19 19:17:27 UTC) #19
nicholss
lgtm thanks for the work!
3 years, 6 months ago (2017-06-19 22:36:49 UTC) #20
Yuwei
On 2017/06/19 22:36:49, nicholss wrote: > lgtm thanks for the work! Thanks! I'll need to ...
3 years, 6 months ago (2017-06-20 20:45:27 UTC) #25
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/2937733003/400001
3 years, 6 months ago (2017-06-20 21:41:01 UTC) #31
commit-bot: I haz the power
3 years, 6 months ago (2017-06-20 23:10:11 UTC) #35
Message was sent while issue was closed.
Committed patchset #18 (id:400001) as
https://chromium.googlesource.com/chromium/src/+/4a13a977ca3b4db548fae2cf1499...

Powered by Google App Engine
This is Rietveld 408576698