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

Side by Side Diff: chrome/browser/dom_ui/chrome_url_data_manager.cc

Issue 115870: Reduce header dependencies in net/ (Closed)
Patch Set: Created 11 years, 7 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
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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/dom_ui/chrome_url_data_manager.h" 5 #include "chrome/browser/dom_ui/chrome_url_data_manager.h"
6 6
7 #include "app/l10n_util.h" 7 #include "app/l10n_util.h"
8 #include "base/file_util.h" 8 #include "base/file_util.h"
9 #include "base/message_loop.h" 9 #include "base/message_loop.h"
10 #include "base/path_service.h" 10 #include "base/path_service.h"
11 #include "base/string_util.h" 11 #include "base/string_util.h"
12 #include "base/thread.h" 12 #include "base/thread.h"
13 #include "base/values.h" 13 #include "base/values.h"
14 #include "chrome/browser/browser_process.h" 14 #include "chrome/browser/browser_process.h"
15 #include "chrome/common/chrome_paths.h" 15 #include "chrome/common/chrome_paths.h"
16 #include "chrome/common/ref_counted_util.h" 16 #include "chrome/common/ref_counted_util.h"
17 #include "chrome/common/url_constants.h" 17 #include "chrome/common/url_constants.h"
18 #include "googleurl/src/url_util.h" 18 #include "googleurl/src/url_util.h"
19 #include "net/base/io_buffer.h"
20 #include "net/base/net_errors.h"
19 #include "net/url_request/url_request.h" 21 #include "net/url_request/url_request.h"
20 #include "net/url_request/url_request_file_job.h" 22 #include "net/url_request/url_request_file_job.h"
21 #include "net/url_request/url_request_job.h" 23 #include "net/url_request/url_request_job.h"
22 #ifdef CHROME_PERSONALIZATION 24 #ifdef CHROME_PERSONALIZATION
23 // TODO(timsteele): Remove all CHROME_PERSONALIZATION code in this file. 25 // TODO(timsteele): Remove all CHROME_PERSONALIZATION code in this file.
24 // It is only temporarily needed to configure some personalization data sources 26 // It is only temporarily needed to configure some personalization data sources
25 // that will go away soon. 27 // that will go away soon.
26 #include "chrome/personalization/personalization.h" 28 #include "chrome/personalization/personalization.h"
27 #endif 29 #endif
28 30
(...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after
366 net::ERR_INVALID_URL)); 368 net::ERR_INVALID_URL));
367 } 369 }
368 } 370 }
369 371
370 URLRequestChromeFileJob::URLRequestChromeFileJob(URLRequest* request, 372 URLRequestChromeFileJob::URLRequestChromeFileJob(URLRequest* request,
371 const FilePath& path) 373 const FilePath& path)
372 : URLRequestFileJob(request, path) { 374 : URLRequestFileJob(request, path) {
373 } 375 }
374 376
375 URLRequestChromeFileJob::~URLRequestChromeFileJob() { } 377 URLRequestChromeFileJob::~URLRequestChromeFileJob() { }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698