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

Issue 1978763003: Readd the clipboard service and get it compiling again. (Closed)

Created:
4 years, 7 months ago by Elliot Glaysher
Modified:
4 years, 7 months ago
Reviewers:
sky, dcheng
CC:
dcheng, Aaron Boodman, abarth-chromium, ben+mojo_chromium.org, blundell+watchlist_chromium.org, chromium-reviews, darin (slow to review), droger+watchlist_chromium.org, kalyank, qsr+mojo_chromium.org, sadrul, sdefresne+watchlist_chromium.org, viettrungluu+watch_chromium.org, yzshen+watch_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Revive the clipboard service and get it compiling again. I want to have a base to start on for the clipboard stuff in chrome, even if it needs to be heavily modified. This patch takes the old code, and integrates it as a service in the mus app. BUG=581460 Committed: https://crrev.com/703e3fa71990ce557d52eda86e720f18bda81140 Cr-Commit-Position: refs/heads/master@{#394931}

Patch Set 1 #

Patch Set 2 : Blacklist building blink bindings for clipboard. #

Total comments: 2

Patch Set 3 : Add OWNERS to the interfaces directory. #

Total comments: 4

Patch Set 4 : Move implementation to mus, add more sequence numbers and fix isolates? #

Patch Set 5 : And blacklist blink again. #

Patch Set 6 : Remove stale manifest.json file and update copyright dates. #

Patch Set 7 : Add testing data dep to fix swarming? #

Patch Set 8 : Merge with tot #

Patch Set 9 : Of course mus tests would need the x server... #

Total comments: 6

Patch Set 10 : Sequence numbers in state. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+491 lines, -11 lines) Patch
M components/mus/BUILD.gn View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
A components/mus/clipboard/BUILD.gn View 1 2 3 4 5 6 1 chunk +57 lines, -0 lines 0 comments Download
A components/mus/clipboard/clipboard_impl.h View 1 2 3 4 5 6 7 8 9 1 chunk +67 lines, -0 lines 0 comments Download
A components/mus/clipboard/clipboard_impl.cc View 1 2 3 4 5 6 7 8 9 1 chunk +113 lines, -0 lines 0 comments Download
A components/mus/clipboard/clipboard_unittest.cc View 1 2 3 4 5 1 chunk +146 lines, -0 lines 0 comments Download
A components/mus/clipboard/test_manifest.json View 1 2 3 1 chunk +10 lines, -0 lines 0 comments Download
M components/mus/manifest.json View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M components/mus/mus_app.h View 1 2 3 4 chunks +12 lines, -6 lines 0 comments Download
M components/mus/mus_app.cc View 1 2 3 4 5 6 7 5 chunks +16 lines, -5 lines 0 comments Download
M components/mus/public/interfaces/BUILD.gn View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
A components/mus/public/interfaces/clipboard.mojom View 1 2 3 1 chunk +50 lines, -0 lines 0 comments Download
M mojo/public/tools/bindings/blink_bindings_configuration.gni View 1 2 3 4 1 chunk +1 line, -0 lines 0 comments Download
M testing/buildbot/chromium.linux.json View 1 2 3 4 5 6 7 2 chunks +12 lines, -0 lines 0 comments Download
M testing/buildbot/gn_isolate_map.pyl View 1 2 3 4 5 6 7 8 1 chunk +4 lines, -0 lines 0 comments Download

Messages

Total messages: 26 (10 generated)
Elliot Glaysher
4 years, 7 months ago (2016-05-13 23:13:55 UTC) #4
dcheng
https://codereview.chromium.org/1978763003/diff/20001/components/clipboard/public/interfaces/clipboard.mojom File components/clipboard/public/interfaces/clipboard.mojom (right): https://codereview.chromium.org/1978763003/diff/20001/components/clipboard/public/interfaces/clipboard.mojom#newcode1 components/clipboard/public/interfaces/clipboard.mojom:1: // Copyright 2014 The Chromium Authors. All rights reserved. ...
4 years, 7 months ago (2016-05-13 23:17:51 UTC) #5
Elliot Glaysher
https://codereview.chromium.org/1978763003/diff/20001/components/clipboard/public/interfaces/clipboard.mojom File components/clipboard/public/interfaces/clipboard.mojom (right): https://codereview.chromium.org/1978763003/diff/20001/components/clipboard/public/interfaces/clipboard.mojom#newcode1 components/clipboard/public/interfaces/clipboard.mojom:1: // Copyright 2014 The Chromium Authors. All rights reserved. ...
4 years, 7 months ago (2016-05-13 23:34:50 UTC) #6
sky
https://codereview.chromium.org/1978763003/diff/40001/components/clipboard/public/interfaces/clipboard.mojom File components/clipboard/public/interfaces/clipboard.mojom (right): https://codereview.chromium.org/1978763003/diff/40001/components/clipboard/public/interfaces/clipboard.mojom#newcode1 components/clipboard/public/interfaces/clipboard.mojom:1: // Copyright 2014 The Chromium Authors. All rights reserved. ...
4 years, 7 months ago (2016-05-14 00:01:12 UTC) #7
Elliot Glaysher
Redid patch from a sort of revert into a minimal integration with mus, along with ...
4 years, 7 months ago (2016-05-18 22:25:58 UTC) #9
sky
+dcheng for mojom security review https://codereview.chromium.org/1978763003/diff/160001/components/mus/clipboard/clipboard_impl.h File components/mus/clipboard/clipboard_impl.h (right): https://codereview.chromium.org/1978763003/diff/160001/components/mus/clipboard/clipboard_impl.h#newcode54 components/mus/clipboard/clipboard_impl.h:54: uint64_t sequence_number_[kNumClipboards]; Did you ...
4 years, 7 months ago (2016-05-19 15:33:46 UTC) #11
dcheng
It looks like this doesn't interact at all with the system clipboard at all atm. ...
4 years, 7 months ago (2016-05-19 17:42:53 UTC) #12
Elliot Glaysher
On 2016/05/19 17:42:53, dcheng wrote: > It looks like this doesn't interact at all with ...
4 years, 7 months ago (2016-05-19 18:22:00 UTC) #13
Elliot Glaysher
https://codereview.chromium.org/1978763003/diff/160001/components/mus/clipboard/clipboard_impl.h File components/mus/clipboard/clipboard_impl.h (right): https://codereview.chromium.org/1978763003/diff/160001/components/mus/clipboard/clipboard_impl.h#newcode54 components/mus/clipboard/clipboard_impl.h:54: uint64_t sequence_number_[kNumClipboards]; On 2016/05/19 15:33:46, sky wrote: > Did ...
4 years, 7 months ago (2016-05-19 18:26:48 UTC) #14
sky
LGTM
4 years, 7 months ago (2016-05-19 19:37:47 UTC) #15
dcheng
mojom lgtm
4 years, 7 months ago (2016-05-19 20:02:17 UTC) #16
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1978763003/180001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1978763003/180001
4 years, 7 months ago (2016-05-19 20:05:14 UTC) #18
commit-bot: I haz the power
Try jobs failed on following builders: win_chromium_x64_rel_ng on tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_x64_rel_ng/builds/216827)
4 years, 7 months ago (2016-05-19 22:12:15 UTC) #20
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1978763003/180001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1978763003/180001
4 years, 7 months ago (2016-05-19 22:15:44 UTC) #22
commit-bot: I haz the power
Committed patchset #10 (id:180001)
4 years, 7 months ago (2016-05-20 00:38:10 UTC) #24
commit-bot: I haz the power
4 years, 7 months ago (2016-05-20 00:40:19 UTC) #26
Message was sent while issue was closed.
Patchset 10 (id:??) landed as
https://crrev.com/703e3fa71990ce557d52eda86e720f18bda81140
Cr-Commit-Position: refs/heads/master@{#394931}

Powered by Google App Engine
This is Rietveld 408576698