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

Side by Side Diff: media/base/video_frame_metadata.cc

Issue 2539363004: Make base::Value::TYPE a scoped enum. (Closed)
Patch Set: Rebase Created 4 years 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
« no previous file with comments | « jingle/glue/utils.cc ('k') | media/base/video_frame_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 "media/base/video_frame_metadata.h" 5 #include "media/base/video_frame_metadata.h"
6 6
7 #include <stdint.h> 7 #include <stdint.h>
8 #include <utility> 8 #include <utility>
9 9
10 #include "base/logging.h" 10 #include "base/logging.h"
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 163
164 void VideoFrameMetadata::MergeMetadataFrom( 164 void VideoFrameMetadata::MergeMetadataFrom(
165 const VideoFrameMetadata* metadata_source) { 165 const VideoFrameMetadata* metadata_source) {
166 dictionary_.MergeDictionary(&metadata_source->dictionary_); 166 dictionary_.MergeDictionary(&metadata_source->dictionary_);
167 } 167 }
168 168
169 const base::BinaryValue* VideoFrameMetadata::GetBinaryValue(Key key) const { 169 const base::BinaryValue* VideoFrameMetadata::GetBinaryValue(Key key) const {
170 const base::Value* internal_value = nullptr; 170 const base::Value* internal_value = nullptr;
171 if (dictionary_.GetWithoutPathExpansion(ToInternalKey(key), 171 if (dictionary_.GetWithoutPathExpansion(ToInternalKey(key),
172 &internal_value) && 172 &internal_value) &&
173 internal_value->GetType() == base::Value::TYPE_BINARY) { 173 internal_value->GetType() == base::Value::Type::BINARY) {
174 return static_cast<const base::BinaryValue*>(internal_value); 174 return static_cast<const base::BinaryValue*>(internal_value);
175 } 175 }
176 return nullptr; 176 return nullptr;
177 } 177 }
178 178
179 } // namespace media 179 } // namespace media
OLDNEW
« no previous file with comments | « jingle/glue/utils.cc ('k') | media/base/video_frame_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698