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

Side by Side Diff: webkit/media/test_response_generator.cc

Issue 8787003: Update these includes to use the new header locations (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 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 | Annotate | Revision Log
« no previous file with comments | « webkit/media/test_response_generator.h ('k') | webkit/media/webmediaplayer_impl.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 (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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/media/test_response_generator.h" 5 #include "webkit/media/test_response_generator.h"
6 6
7 #include "base/format_macros.h" 7 #include "base/format_macros.h"
8 #include "base/string_number_conversions.h" 8 #include "base/string_number_conversions.h"
9 #include "base/stringprintf.h" 9 #include "base/stringprintf.h"
10 #include "net/base/net_errors.h" 10 #include "net/base/net_errors.h"
11 #include "third_party/WebKit/Source/WebKit/chromium/public/WebString.h" 11 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebString.h"
12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebURLResponse.h" 12 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURLRespon se.h"
13 13
14 using WebKit::WebString; 14 using WebKit::WebString;
15 using WebKit::WebURLError; 15 using WebKit::WebURLError;
16 using WebKit::WebURLResponse; 16 using WebKit::WebURLResponse;
17 17
18 namespace webkit_media { 18 namespace webkit_media {
19 19
20 TestResponseGenerator::TestResponseGenerator(const GURL& gurl, 20 TestResponseGenerator::TestResponseGenerator(const GURL& gurl,
21 int64 content_length) 21 int64 content_length)
22 : gurl_(gurl), 22 : gurl_(gurl),
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 return response; 75 return response;
76 } 76 }
77 77
78 WebURLResponse TestResponseGenerator::Generate404() { 78 WebURLResponse TestResponseGenerator::Generate404() {
79 WebURLResponse response(gurl_); 79 WebURLResponse response(gurl_);
80 response.setHTTPStatusCode(404); 80 response.setHTTPStatusCode(404);
81 return response; 81 return response;
82 } 82 }
83 83
84 } // namespace webkit_media 84 } // namespace webkit_media
OLDNEW
« no previous file with comments | « webkit/media/test_response_generator.h ('k') | webkit/media/webmediaplayer_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698