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

Side by Side Diff: content/browser/net/url_request_slow_http_job.cc

Issue 7149013: Remove most of the remaining test dependencies (other than chrome/test). (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 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 (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 "chrome/browser/net/url_request_slow_http_job.h" 5 #include "content/browser/net/url_request_slow_http_job.h"
6 6
7 #include "base/time.h" 7 #include "base/time.h"
8 #include "base/utf_string_conversions.h" 8 #include "base/utf_string_conversions.h"
9 #include "net/url_request/url_request_filter.h" 9 #include "net/url_request/url_request_filter.h"
10 10
11 static const char kMockHostname[] = "mock.slow.http"; 11 static const char kMockHostname[] = "mock.slow.http";
12 12
13 FilePath URLRequestSlowHTTPJob::base_path_; 13 FilePath URLRequestSlowHTTPJob::base_path_;
14 14
15 // static 15 // static
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 delay_timer_.Start(TimeDelta::FromMilliseconds(kDelayMs), this, 53 delay_timer_.Start(TimeDelta::FromMilliseconds(kDelayMs), this,
54 &URLRequestSlowHTTPJob::RealStart); 54 &URLRequestSlowHTTPJob::RealStart);
55 } 55 }
56 56
57 URLRequestSlowHTTPJob::~URLRequestSlowHTTPJob() { 57 URLRequestSlowHTTPJob::~URLRequestSlowHTTPJob() {
58 } 58 }
59 59
60 void URLRequestSlowHTTPJob::RealStart() { 60 void URLRequestSlowHTTPJob::RealStart() {
61 URLRequestMockHTTPJob::Start(); 61 URLRequestMockHTTPJob::Start();
62 } 62 }
OLDNEW
« no previous file with comments | « content/browser/net/url_request_slow_http_job.h ('k') | content/browser/renderer_host/clipboard_message_filter_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698