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

Issue 2906953003: Remove ScopedVector usage from components/history (Closed)

Created:
3 years, 6 months ago by donna.wu
Modified:
3 years, 6 months ago
CC:
chromium-reviews, chromium-apps-reviews_chromium.org, extensions-reviews_chromium.org
Target Ref:
refs/heads/master
Project:
chromium
Visibility:
Public.

Description

Remove ScopedVector usage from components/history This CL replaces ScopedVector with std::vector<std::unique_ptr> in components/history. ScopedVector is deprecated, see bug. BUG=554289 Review-Url: https://codereview.chromium.org/2906953003 Cr-Commit-Position: refs/heads/master@{#478547} Committed: https://chromium.googlesource.com/chromium/src/+/370a037ae7d0cd617c45942610c5866aff44a35c

Patch Set 1 #

Patch Set 2 : Remove ScopedVector usage from components/history #

Total comments: 6

Patch Set 3 : Remove ScopedVector usage from components/history #

Patch Set 4 : Remove ScopedVector usage from components/history #

Unified diffs Side-by-side diffs Delta from patch set Stats (+44 lines, -60 lines) Patch
M AUTHORS View 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/extensions/api/history/history_api.cc View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M chrome/browser/ui/webui/browsing_history_handler_unittest.cc View 1 2 3 1 chunk +3 lines, -1 line 0 comments Download
M components/history/core/browser/history_backend.cc View 1 2 3 3 chunks +9 lines, -6 lines 0 comments Download
M components/history/core/browser/history_types.h View 1 2 3 4 chunks +9 lines, -29 lines 0 comments Download
M components/history/core/browser/history_types.cc View 1 2 3 2 chunks +7 lines, -7 lines 0 comments Download
M components/history/core/browser/history_types_unittest.cc View 1 2 3 1 chunk +6 lines, -6 lines 0 comments Download
M ios/chrome/browser/tabs/tab_unittest.mm View 1 2 1 chunk +3 lines, -5 lines 0 comments Download
M ios/chrome/browser/ui/history/history_service_facade.mm View 1 2 1 chunk +4 lines, -4 lines 0 comments Download

Messages

Total messages: 60 (39 generated)
donna.wu
Hi, sky, rocket and leon, would you please take a look at it? As a ...
3 years, 6 months ago (2017-05-27 09:23:57 UTC) #6
donna.wu
3 years, 6 months ago (2017-05-27 09:35:17 UTC) #8
sky
+brettw to see if he can think of a reason not to do as I ...
3 years, 6 months ago (2017-05-30 16:12:05 UTC) #14
brettw
https://codereview.chromium.org/2906953003/diff/20001/components/history/core/browser/history_types.h File components/history/core/browser/history_types.h (right): https://codereview.chromium.org/2906953003/diff/20001/components/history/core/browser/history_types.h#newcode138 components/history/core/browser/history_types.h:138: typedef std::vector<std::unique_ptr<URLResult>> URLResultVector; On 2017/05/30 16:12:04, sky wrote: > ...
3 years, 6 months ago (2017-06-02 23:17:52 UTC) #15
donna.wu
https://codereview.chromium.org/2906953003/diff/20001/components/history/core/browser/history_types.h File components/history/core/browser/history_types.h (right): https://codereview.chromium.org/2906953003/diff/20001/components/history/core/browser/history_types.h#newcode138 components/history/core/browser/history_types.h:138: typedef std::vector<std::unique_ptr<URLResult>> URLResultVector; On 2017/06/02 23:17:52, brettw wrote: > ...
3 years, 6 months ago (2017-06-05 08:43:18 UTC) #16
donna.wu
On 2017/06/05 08:43:18, donna.wu wrote: > https://codereview.chromium.org/2906953003/diff/20001/components/history/core/browser/history_types.h > File components/history/core/browser/history_types.h (right): > > https://codereview.chromium.org/2906953003/diff/20001/components/history/core/browser/history_types.h#newcode138 > ...
3 years, 6 months ago (2017-06-05 09:37:10 UTC) #21
brettw
https://codereview.chromium.org/2906953003/diff/20001/components/history/core/browser/history_types.h File components/history/core/browser/history_types.h (right): https://codereview.chromium.org/2906953003/diff/20001/components/history/core/browser/history_types.h#newcode138 components/history/core/browser/history_types.h:138: typedef std::vector<std::unique_ptr<URLResult>> URLResultVector; We don't want to do that, ...
3 years, 6 months ago (2017-06-05 22:39:27 UTC) #26
donna.wu
https://codereview.chromium.org/2906953003/diff/20001/components/history/core/browser/history_types.h File components/history/core/browser/history_types.h (right): https://codereview.chromium.org/2906953003/diff/20001/components/history/core/browser/history_types.h#newcode138 components/history/core/browser/history_types.h:138: typedef std::vector<std::unique_ptr<URLResult>> URLResultVector; On 2017/06/05 22:39:27, brettw wrote: > ...
3 years, 6 months ago (2017-06-06 14:48:15 UTC) #27
brettw
On 2017/06/06 14:48:15, donna.wu wrote: > https://codereview.chromium.org/2906953003/diff/20001/components/history/core/browser/history_types.h > File components/history/core/browser/history_types.h (right): > > https://codereview.chromium.org/2906953003/diff/20001/components/history/core/browser/history_types.h#newcode138 > ...
3 years, 6 months ago (2017-06-06 16:00:42 UTC) #28
donna.wu
On 2017/06/06 16:00:42, brettw wrote: > On 2017/06/06 14:48:15, donna.wu wrote: > > > https://codereview.chromium.org/2906953003/diff/20001/components/history/core/browser/history_types.h ...
3 years, 6 months ago (2017-06-07 07:08:09 UTC) #29
brettw
lgtm
3 years, 6 months ago (2017-06-07 21:06:03 UTC) #30
donna.wu
On 2017/06/07 21:06:03, brettw wrote: > lgtm Thank you!
3 years, 6 months ago (2017-06-08 03:10:10 UTC) #31
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/2906953003/60001
3 years, 6 months ago (2017-06-08 07:03:44 UTC) #38
commit-bot: I haz the power
Try jobs failed on following builders: chromium_presubmit on master.tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/458766)
3 years, 6 months ago (2017-06-08 07:11:33 UTC) #40
donna.wu
tsergeant@chromium.org: Please review changes in rohitrao@chromium.org: Please review changes in
3 years, 6 months ago (2017-06-08 07:32:29 UTC) #44
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/2906953003/60001
3 years, 6 months ago (2017-06-08 07:37:55 UTC) #48
commit-bot: I haz the power
Try jobs failed on following builders: chromium_presubmit on master.tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/458778)
3 years, 6 months ago (2017-06-08 07:47:42 UTC) #50
tsergeant
rs lgtm for browsing_history_handler_unittest.cc
3 years, 6 months ago (2017-06-08 08:57:46 UTC) #54
rohitrao (ping after 24h)
ios/ lgtm
3 years, 6 months ago (2017-06-09 17:44:30 UTC) #55
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/2906953003/60001
3 years, 6 months ago (2017-06-12 02:58:38 UTC) #57
commit-bot: I haz the power
3 years, 6 months ago (2017-06-12 03:57:13 UTC) #60
Message was sent while issue was closed.
Committed patchset #4 (id:60001) as
https://chromium.googlesource.com/chromium/src/+/370a037ae7d0cd617c45942610c5...

Powered by Google App Engine
This is Rietveld 408576698