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

Issue 16231016: Extract track information from iTunes library xml file. (Closed)

Created:
7 years, 6 months ago by vandebo (ex-Chrome)
Modified:
7 years, 6 months ago
Reviewers:
Lei Zhang, bryeung
CC:
chromium-reviews, tzik+watch_chromium.org, kinuko+watch
Visibility:
Public.

Description

Extract track information from iTunes library xml file. BUG=234837 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=203958

Patch Set 1 #

Total comments: 24

Patch Set 2 : Address comments and add more tests #

Total comments: 13

Patch Set 3 : Address comments #

Total comments: 3

Patch Set 4 : comment nit #

Patch Set 5 : Clang fix #

Patch Set 6 : Real clang fix #

Patch Set 7 : Win Compile #

Patch Set 8 : Fix type for Win #

Patch Set 9 : Fix win test #

Unified diffs Side-by-side diffs Delta from patch set Stats (+542 lines, -41 lines) Patch
M chrome/browser/media_galleries/fileapi/itunes_finder_win.cc View 1 2 3 4 5 6 2 chunks +1 line, -41 lines 0 comments Download
A chrome/browser/media_galleries/fileapi/itunes_library_parser.h View 1 2 3 4 5 1 chunk +46 lines, -0 lines 0 comments Download
A chrome/browser/media_galleries/fileapi/itunes_library_parser.cc View 1 2 3 4 5 6 7 8 1 chunk +208 lines, -0 lines 0 comments Download
A chrome/browser/media_galleries/fileapi/itunes_library_parser_unittest.cc View 1 2 3 4 5 6 7 1 chunk +197 lines, -0 lines 0 comments Download
A chrome/browser/media_galleries/fileapi/itunes_xml_utils.h View 1 2 3 1 chunk +28 lines, -0 lines 0 comments Download
A chrome/browser/media_galleries/fileapi/itunes_xml_utils.cc View 1 2 1 chunk +57 lines, -0 lines 0 comments Download
M chrome/chrome_browser.gypi View 1 2 1 chunk +4 lines, -0 lines 0 comments Download
M chrome/chrome_tests_unit.gypi View 1 2 1 chunk +1 line, -0 lines 0 comments Download

Messages

Total messages: 24 (0 generated)
wrong vandebo
I'm going to add some more tests, but if you can give this a once ...
7 years, 6 months ago (2013-05-30 23:14:44 UTC) #1
Lei Zhang
https://codereview.chromium.org/16231016/diff/1/chrome/browser/media_galleries/fileapi/itunes_library_parser.cc File chrome/browser/media_galleries/fileapi/itunes_library_parser.cc (right): https://codereview.chromium.org/16231016/diff/1/chrome/browser/media_galleries/fileapi/itunes_library_parser.cc#newcode99 chrome/browser/media_galleries/fileapi/itunes_library_parser.cc:99: // true if it was all found, false otherwise. ...
7 years, 6 months ago (2013-05-31 04:34:35 UTC) #2
vandebo (ex-Chrome)
Added some more tests, happy to add any others you think might be useful. https://codereview.chromium.org/16231016/diff/1/chrome/browser/media_galleries/fileapi/itunes_library_parser.cc ...
7 years, 6 months ago (2013-05-31 21:41:12 UTC) #3
Lei Zhang
lgtm, though I didn't check the libxml usage. https://codereview.chromium.org/16231016/diff/1/chrome/browser/media_galleries/fileapi/itunes_library_parser.cc File chrome/browser/media_galleries/fileapi/itunes_library_parser.cc (right): https://codereview.chromium.org/16231016/diff/1/chrome/browser/media_galleries/fileapi/itunes_library_parser.cc#newcode105 chrome/browser/media_galleries/fileapi/itunes_library_parser.cc:105: int ...
7 years, 6 months ago (2013-05-31 22:06:53 UTC) #4
vandebo (ex-Chrome)
On 2013/05/31 22:06:53, Lei Zhang wrote: > lgtm, though I didn't check the libxml usage. ...
7 years, 6 months ago (2013-05-31 22:21:12 UTC) #5
Lei Zhang
On 2013/05/31 22:21:12, vandebo wrote: > On 2013/05/31 22:06:53, Lei Zhang wrote: > > lgtm, ...
7 years, 6 months ago (2013-05-31 22:24:16 UTC) #6
vandebo (ex-Chrome)
Bryan, could you take a look?
7 years, 6 months ago (2013-05-31 22:28:52 UTC) #7
bryeung
nice unittest: it's very clearly written. A couple of comments RE: code duplication mostly. https://codereview.chromium.org/16231016/diff/6001/chrome/browser/media_galleries/fileapi/itunes_library_parser.cc ...
7 years, 6 months ago (2013-06-03 14:30:27 UTC) #8
vandebo (ex-Chrome)
Thanks https://codereview.chromium.org/16231016/diff/6001/chrome/browser/media_galleries/fileapi/itunes_library_parser.cc File chrome/browser/media_galleries/fileapi/itunes_library_parser.cc (right): https://codereview.chromium.org/16231016/diff/6001/chrome/browser/media_galleries/fileapi/itunes_library_parser.cc#newcode31 chrome/browser/media_galleries/fileapi/itunes_library_parser.cc:31: bool SeekToNodeAtCurrentDepth(XmlReader* reader, const std::string& name) { On ...
7 years, 6 months ago (2013-06-03 17:28:48 UTC) #9
bryeung
lgtm https://codereview.chromium.org/16231016/diff/17001/chrome/browser/media_galleries/fileapi/itunes_xml_utils.h File chrome/browser/media_galleries/fileapi/itunes_xml_utils.h (right): https://codereview.chromium.org/16231016/diff/17001/chrome/browser/media_galleries/fileapi/itunes_xml_utils.h#newcode22 chrome/browser/media_galleries/fileapi/itunes_xml_utils.h:22: // Search within the dict for |key|. A ...
7 years, 6 months ago (2013-06-03 17:34:16 UTC) #10
vandebo (ex-Chrome)
https://codereview.chromium.org/16231016/diff/17001/chrome/browser/media_galleries/fileapi/itunes_xml_utils.h File chrome/browser/media_galleries/fileapi/itunes_xml_utils.h (right): https://codereview.chromium.org/16231016/diff/17001/chrome/browser/media_galleries/fileapi/itunes_xml_utils.h#newcode22 chrome/browser/media_galleries/fileapi/itunes_xml_utils.h:22: // Search within the dict for |key|. On 2013/06/03 ...
7 years, 6 months ago (2013-06-03 17:46:52 UTC) #11
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/vandebo@chromium.org/16231016/21002
7 years, 6 months ago (2013-06-03 17:47:10 UTC) #12
bryeung
https://codereview.chromium.org/16231016/diff/17001/chrome/browser/media_galleries/fileapi/itunes_xml_utils.h File chrome/browser/media_galleries/fileapi/itunes_xml_utils.h (right): https://codereview.chromium.org/16231016/diff/17001/chrome/browser/media_galleries/fileapi/itunes_xml_utils.h#newcode22 chrome/browser/media_galleries/fileapi/itunes_xml_utils.h:22: // Search within the dict for |key|. On 2013/06/03 ...
7 years, 6 months ago (2013-06-03 17:49:22 UTC) #13
commit-bot: I haz the power
Sorry for I got bad news for ya. Compile failed with a clobber build on ...
7 years, 6 months ago (2013-06-03 18:11:28 UTC) #14
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/vandebo@chromium.org/16231016/18012
7 years, 6 months ago (2013-06-03 18:31:12 UTC) #15
commit-bot: I haz the power
Sorry for I got bad news for ya. Compile failed with a clobber build on ...
7 years, 6 months ago (2013-06-03 18:52:19 UTC) #16
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/vandebo@chromium.org/16231016/16007
7 years, 6 months ago (2013-06-03 18:59:03 UTC) #17
commit-bot: I haz the power
Sorry for I got bad news for ya. Compile failed with a clobber build on ...
7 years, 6 months ago (2013-06-03 20:02:46 UTC) #18
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/vandebo@chromium.org/16231016/21010
7 years, 6 months ago (2013-06-03 20:07:40 UTC) #19
commit-bot: I haz the power
Sorry for I got bad news for ya. Compile failed with a clobber build on ...
7 years, 6 months ago (2013-06-03 21:34:27 UTC) #20
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/vandebo@chromium.org/16231016/30013
7 years, 6 months ago (2013-06-03 21:41:24 UTC) #21
commit-bot: I haz the power
Retried try job too often on win_rel for step(s) unit_tests http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=win_rel&number=157069
7 years, 6 months ago (2013-06-03 22:49:22 UTC) #22
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/vandebo@chromium.org/16231016/32001
7 years, 6 months ago (2013-06-04 05:41:23 UTC) #23
commit-bot: I haz the power
7 years, 6 months ago (2013-06-04 13:51:05 UTC) #24
Message was sent while issue was closed.
Change committed as 203958

Powered by Google App Engine
This is Rietveld 408576698