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

Side by Side Diff: media/cast/logging/encoding_event_subscriber.cc

Issue 528743002: Explicitly #include <algorithm> in media/cast/logging/encoding_event_subscriber.cc (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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/cast/logging/encoding_event_subscriber.h" 5 #include "media/cast/logging/encoding_event_subscriber.h"
6 6
7 #include <algorithm>
7 #include <cstring> 8 #include <cstring>
8 #include <utility> 9 #include <utility>
9 10
10 #include "base/logging.h" 11 #include "base/logging.h"
11 #include "media/cast/logging/proto/proto_utils.h" 12 #include "media/cast/logging/proto/proto_utils.h"
12 13
13 using google::protobuf::RepeatedPtrField; 14 using google::protobuf::RepeatedPtrField;
14 using media::cast::proto::AggregatedFrameEvent; 15 using media::cast::proto::AggregatedFrameEvent;
15 using media::cast::proto::AggregatedPacketEvent; 16 using media::cast::proto::AggregatedPacketEvent;
16 using media::cast::proto::BasePacketEvent; 17 using media::cast::proto::BasePacketEvent;
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
277 frame_event_storage_index_ = 0; 278 frame_event_storage_index_ = 0;
278 packet_event_map_.clear(); 279 packet_event_map_.clear();
279 packet_event_storage_.clear(); 280 packet_event_storage_.clear();
280 packet_event_storage_index_ = 0; 281 packet_event_storage_index_ = 0;
281 seen_first_rtp_timestamp_ = false; 282 seen_first_rtp_timestamp_ = false;
282 first_rtp_timestamp_ = 0u; 283 first_rtp_timestamp_ = 0u;
283 } 284 }
284 285
285 } // namespace cast 286 } // namespace cast
286 } // namespace media 287 } // namespace media
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698