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

Side by Side Diff: chrome/utility/media_galleries/media_metadata_parser.cc

Issue 148113012: Media: AudioVideoMetadataParser - Parse rotation metadata. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
OLDNEW
« no previous file with comments | « chrome/common/extensions/api/media_galleries.idl ('k') | media/base/audio_video_metadata_extractor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698