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

Side by Side Diff: webkit/renderer/media/buffered_resource_loader.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/buffered_resource_loader.h" 5 #include "webkit/renderer/media/buffered_resource_loader.h"
6 6
7 #include "base/bits.h" 7 #include "base/bits.h"
8 #include "base/callback_helpers.h" 8 #include "base/callback_helpers.h"
9 #include "base/format_macros.h" 9 #include "base/format_macros.h"
10 #include "base/metrics/histogram.h" 10 #include "base/metrics/histogram.h"
11 #include "base/string_util.h"
12 #include "base/stringprintf.h"
13 #include "base/strings/string_number_conversions.h" 11 #include "base/strings/string_number_conversions.h"
12 #include "base/strings/string_util.h"
13 #include "base/strings/stringprintf.h"
14 #include "media/base/media_log.h" 14 #include "media/base/media_log.h"
15 #include "net/http/http_request_headers.h" 15 #include "net/http/http_request_headers.h"
16 #include "third_party/WebKit/public/platform/WebString.h" 16 #include "third_party/WebKit/public/platform/WebString.h"
17 #include "third_party/WebKit/public/platform/WebURLError.h" 17 #include "third_party/WebKit/public/platform/WebURLError.h"
18 #include "third_party/WebKit/public/platform/WebURLResponse.h" 18 #include "third_party/WebKit/public/platform/WebURLResponse.h"
19 #include "third_party/WebKit/Source/WebKit/chromium/public/WebKit.h" 19 #include "third_party/WebKit/Source/WebKit/chromium/public/WebKit.h"
20 #include "third_party/WebKit/Source/WebKit/chromium/public/WebURLLoaderOptions.h " 20 #include "third_party/WebKit/Source/WebKit/chromium/public/WebURLLoaderOptions.h "
21 #include "webkit/renderer/media/cache_util.h" 21 #include "webkit/renderer/media/cache_util.h"
22 22
23 using WebKit::WebFrame; 23 using WebKit::WebFrame;
(...skipping 770 matching lines...) Expand 10 before | Expand all | Expand 10 after
794 794
795 void BufferedResourceLoader::Log() { 795 void BufferedResourceLoader::Log() {
796 media_log_->AddEvent( 796 media_log_->AddEvent(
797 media_log_->CreateBufferedExtentsChangedEvent( 797 media_log_->CreateBufferedExtentsChangedEvent(
798 offset_ - buffer_.backward_bytes(), 798 offset_ - buffer_.backward_bytes(),
799 offset_, 799 offset_,
800 offset_ + buffer_.forward_bytes())); 800 offset_ + buffer_.forward_bytes()));
801 } 801 }
802 802
803 } // namespace webkit_media 803 } // namespace webkit_media
OLDNEW
« no previous file with comments | « webkit/renderer/media/audio_decoder.cc ('k') | webkit/renderer/media/buffered_resource_loader_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698