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

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

Issue 1181713004: Remove base/port.h includes that are not necessary anymore. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix win build Created 5 years, 6 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
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/base/bit_reader_core.h" 5 #include "media/base/bit_reader_core.h"
6 6
7 #include <stdint.h> 7 #include <stdint.h>
8 8
9 #include "base/port.h"
10 #include "base/sys_byteorder.h" 9 #include "base/sys_byteorder.h"
11 10
12 namespace { 11 namespace {
13 const int kRegWidthInBits = sizeof(uint64) * 8; 12 const int kRegWidthInBits = sizeof(uint64) * 8;
14 } 13 }
15 14
16 namespace media { 15 namespace media {
17 16
18 BitReaderCore::ByteStreamProvider::ByteStreamProvider() { 17 BitReaderCore::ByteStreamProvider::ByteStreamProvider() {
19 } 18 }
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 nbits_next_ = 0; 181 nbits_next_ = 0;
183 return; 182 return;
184 } 183 }
185 184
186 nbits_ += free_nbits; 185 nbits_ += free_nbits;
187 reg_next_ <<= free_nbits; 186 reg_next_ <<= free_nbits;
188 nbits_next_ -= free_nbits; 187 nbits_next_ -= free_nbits;
189 } 188 }
190 189
191 } // namespace media 190 } // namespace media
OLDNEW
« no previous file with comments | « content/browser/accessibility/accessibility_event_recorder.cc ('k') | media/formats/mp2t/timestamp_unroller_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698