| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/utility/media_galleries/media_metadata_parser.h" | 5 #include "chrome/utility/media_galleries/media_metadata_parser.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "base/bind.h" | 9 #include "base/bind.h" |
| 10 #include "base/message_loop/message_loop.h" | 10 #include "base/message_loop/message_loop.h" |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 } | 68 } |
| 69 | 69 |
| 70 SetStringScopedPtr(extractor.artist(), &metadata_->artist); | 70 SetStringScopedPtr(extractor.artist(), &metadata_->artist); |
| 71 SetStringScopedPtr(extractor.album(), &metadata_->album); | 71 SetStringScopedPtr(extractor.album(), &metadata_->album); |
| 72 SetStringScopedPtr(extractor.artist(), &metadata_->artist); | 72 SetStringScopedPtr(extractor.artist(), &metadata_->artist); |
| 73 SetStringScopedPtr(extractor.comment(), &metadata_->comment); | 73 SetStringScopedPtr(extractor.comment(), &metadata_->comment); |
| 74 SetStringScopedPtr(extractor.copyright(), &metadata_->copyright); | 74 SetStringScopedPtr(extractor.copyright(), &metadata_->copyright); |
| 75 SetIntScopedPtr(extractor.disc(), &metadata_->disc); | 75 SetIntScopedPtr(extractor.disc(), &metadata_->disc); |
| 76 SetStringScopedPtr(extractor.genre(), &metadata_->genre); | 76 SetStringScopedPtr(extractor.genre(), &metadata_->genre); |
| 77 SetStringScopedPtr(extractor.language(), &metadata_->language); | 77 SetStringScopedPtr(extractor.language(), &metadata_->language); |
| 78 SetIntScopedPtr(extractor.rotation(), &metadata_->rotation); |
| 78 SetStringScopedPtr(extractor.title(), &metadata_->title); | 79 SetStringScopedPtr(extractor.title(), &metadata_->title); |
| 79 SetIntScopedPtr(extractor.track(), &metadata_->track); | 80 SetIntScopedPtr(extractor.track(), &metadata_->track); |
| 80 } | 81 } |
| 81 | 82 |
| 82 } // namespace metadata | 83 } // namespace metadata |
| OLD | NEW |