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

Side by Side Diff: webkit/renderer/media/audio_decoder.cc

Issue 16739016: Use a direct include of strings headers in webkit/, part 2. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: missing include from ordering Created 7 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 | 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 "webkit/renderer/media/audio_decoder.h" 5 #include "webkit/renderer/media/audio_decoder.h"
6 6
7 #include <vector> 7 #include <vector>
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/string_util.h" 9 #include "base/strings/string_util.h"
10 #include "base/time.h" 10 #include "base/time.h"
11 #include "media/base/audio_bus.h" 11 #include "media/base/audio_bus.h"
12 #include "media/base/limits.h" 12 #include "media/base/limits.h"
13 #include "media/filters/audio_file_reader.h" 13 #include "media/filters/audio_file_reader.h"
14 #include "media/filters/in_memory_url_protocol.h" 14 #include "media/filters/in_memory_url_protocol.h"
15 #include "third_party/WebKit/public/platform/WebAudioBus.h" 15 #include "third_party/WebKit/public/platform/WebAudioBus.h"
16 16
17 using media::AudioBus; 17 using media::AudioBus;
18 using media::AudioFileReader; 18 using media::AudioFileReader;
19 using media::InMemoryUrlProtocol; 19 using media::InMemoryUrlProtocol;
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 << " data size: " << data_size 84 << " data size: " << data_size
85 << " duration: " << duration 85 << " duration: " << duration
86 << " number of frames: " << actual_frames 86 << " number of frames: " << actual_frames
87 << " sample rate: " << file_sample_rate 87 << " sample rate: " << file_sample_rate
88 << " number of channels: " << number_of_channels; 88 << " number of channels: " << number_of_channels;
89 89
90 return actual_frames > 0; 90 return actual_frames > 0;
91 } 91 }
92 92
93 } // namespace webkit_media 93 } // namespace webkit_media
OLDNEW
« no previous file with comments | « webkit/renderer/dom_storage/dom_storage_proxy.h ('k') | webkit/renderer/media/buffered_resource_loader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698