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

Side by Side Diff: content/renderer/media/buffered_resource_loader_unittest.cc

Issue 24704003: Move webkit/mocks/ to content/test (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 2 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 <algorithm> 5 #include <algorithm>
6 #include <string> 6 #include <string>
7 7
8 #include "base/bind.h" 8 #include "base/bind.h"
9 #include "base/format_macros.h" 9 #include "base/format_macros.h"
10 #include "base/message_loop/message_loop.h" 10 #include "base/message_loop/message_loop.h"
11 #include "base/strings/stringprintf.h" 11 #include "base/strings/stringprintf.h"
12 #include "content/renderer/media/buffered_resource_loader.h" 12 #include "content/renderer/media/buffered_resource_loader.h"
13 #include "content/test/mock_webframeclient.h"
14 #include "content/test/mock_weburlloader.h"
13 #include "media/base/media_log.h" 15 #include "media/base/media_log.h"
14 #include "media/base/seekable_buffer.h" 16 #include "media/base/seekable_buffer.h"
15 #include "net/base/net_errors.h" 17 #include "net/base/net_errors.h"
16 #include "net/http/http_request_headers.h" 18 #include "net/http/http_request_headers.h"
17 #include "net/http/http_util.h" 19 #include "net/http/http_util.h"
18 #include "third_party/WebKit/public/platform/WebString.h" 20 #include "third_party/WebKit/public/platform/WebString.h"
19 #include "third_party/WebKit/public/platform/WebURLError.h" 21 #include "third_party/WebKit/public/platform/WebURLError.h"
20 #include "third_party/WebKit/public/platform/WebURLRequest.h" 22 #include "third_party/WebKit/public/platform/WebURLRequest.h"
21 #include "third_party/WebKit/public/platform/WebURLResponse.h" 23 #include "third_party/WebKit/public/platform/WebURLResponse.h"
22 #include "third_party/WebKit/public/web/WebFrame.h" 24 #include "third_party/WebKit/public/web/WebFrame.h"
23 #include "third_party/WebKit/public/web/WebView.h" 25 #include "third_party/WebKit/public/web/WebView.h"
24 #include "webkit/mocks/mock_webframeclient.h"
25 #include "webkit/mocks/mock_weburlloader.h"
26 26
27 using ::testing::_; 27 using ::testing::_;
28 using ::testing::InSequence; 28 using ::testing::InSequence;
29 using ::testing::Return; 29 using ::testing::Return;
30 using ::testing::Truly; 30 using ::testing::Truly;
31 using ::testing::NiceMock; 31 using ::testing::NiceMock;
32 32
33 using WebKit::WebString; 33 using WebKit::WebString;
34 using WebKit::WebURLError; 34 using WebKit::WebURLError;
35 using WebKit::WebURLResponse; 35 using WebKit::WebURLResponse;
36 using WebKit::WebView; 36 using WebKit::WebView;
37 37
38 using webkit_glue::MockWebFrameClient;
39 using webkit_glue::MockWebURLLoader;
40
41 namespace content { 38 namespace content {
42 39
43 static const char* kHttpUrl = "http://test"; 40 static const char* kHttpUrl = "http://test";
44 static const char kHttpRedirectToSameDomainUrl1[] = "http://test/ing"; 41 static const char kHttpRedirectToSameDomainUrl1[] = "http://test/ing";
45 static const char kHttpRedirectToSameDomainUrl2[] = "http://test/ing2"; 42 static const char kHttpRedirectToSameDomainUrl2[] = "http://test/ing2";
46 static const char kHttpRedirectToDifferentDomainUrl1[] = "http://test2"; 43 static const char kHttpRedirectToDifferentDomainUrl1[] = "http://test2";
47 44
48 static const int kDataSize = 1024; 45 static const int kDataSize = 1024;
49 static const int kHttpOK = 200; 46 static const int kHttpOK = 200;
50 static const int kHttpPartialContent = 206; 47 static const int kHttpPartialContent = 206;
(...skipping 1071 matching lines...) Expand 10 before | Expand all | Expand 10 after
1122 ExpectContentRangeFailure("bytes 20-10/400"); 1119 ExpectContentRangeFailure("bytes 20-10/400");
1123 1120
1124 ExpectContentRangeSuccess("bytes 0-499/500", 0, 499, 500); 1121 ExpectContentRangeSuccess("bytes 0-499/500", 0, 499, 500);
1125 ExpectContentRangeSuccess("bytes 0-0/500", 0, 0, 500); 1122 ExpectContentRangeSuccess("bytes 0-0/500", 0, 0, 500);
1126 ExpectContentRangeSuccess("bytes 10-11/50", 10, 11, 50); 1123 ExpectContentRangeSuccess("bytes 10-11/50", 10, 11, 50);
1127 ExpectContentRangeSuccess("bytes 10-11/*", 10, 11, 1124 ExpectContentRangeSuccess("bytes 10-11/*", 10, 11,
1128 kPositionNotSpecified); 1125 kPositionNotSpecified);
1129 } 1126 }
1130 1127
1131 } // namespace content 1128 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/media/buffered_data_source_unittest.cc ('k') | content/test/mock_webframeclient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698