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

Side by Side Diff: chrome/browser/webui/chrome_url_data_manager_backend.cc

Issue 6586001: Move appcache/file_sytem/device_orientation subdirectories of chrome\browser ... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: sync Created 9 years, 10 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) 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 "chrome/browser/webui/chrome_url_data_manager_backend.h" 5 #include "chrome/browser/webui/chrome_url_data_manager_backend.h"
6 6
7 #include "base/file_util.h" 7 #include "base/file_util.h"
8 #include "base/message_loop.h" 8 #include "base/message_loop.h"
9 #include "base/path_service.h" 9 #include "base/path_service.h"
10 #include "base/ref_counted_memory.h" 10 #include "base/ref_counted_memory.h"
11 #include "base/string_util.h" 11 #include "base/string_util.h"
12 #include "chrome/browser/appcache/view_appcache_internals_job_factory.h"
13 #include "chrome/browser/browser_thread.h"
14 #include "chrome/browser/net/chrome_url_request_context.h" 12 #include "chrome/browser/net/chrome_url_request_context.h"
15 #include "chrome/browser/net/view_blob_internals_job_factory.h" 13 #include "chrome/browser/net/view_blob_internals_job_factory.h"
16 #include "chrome/browser/net/view_http_cache_job_factory.h" 14 #include "chrome/browser/net/view_http_cache_job_factory.h"
17 #include "chrome/browser/webui/shared_resources_data_source.h" 15 #include "chrome/browser/webui/shared_resources_data_source.h"
18 #include "chrome/common/chrome_paths.h" 16 #include "chrome/common/chrome_paths.h"
19 #include "chrome/common/url_constants.h" 17 #include "chrome/common/url_constants.h"
18 #include "content/browser/appcache/view_appcache_internals_job_factory.h"
19 #include "content/browser/browser_thread.h"
20 #include "googleurl/src/url_util.h" 20 #include "googleurl/src/url_util.h"
21 #include "grit/platform_locale_settings.h" 21 #include "grit/platform_locale_settings.h"
22 #include "net/base/io_buffer.h" 22 #include "net/base/io_buffer.h"
23 #include "net/base/net_errors.h" 23 #include "net/base/net_errors.h"
24 #include "net/url_request/url_request.h" 24 #include "net/url_request/url_request.h"
25 #include "net/url_request/url_request_file_job.h" 25 #include "net/url_request/url_request_file_job.h"
26 #include "net/url_request/url_request_job.h" 26 #include "net/url_request/url_request_job.h"
27 27
28 static ChromeURLDataManagerBackend* GetBackend(net::URLRequest* request) { 28 static ChromeURLDataManagerBackend* GetBackend(net::URLRequest* request) {
29 return static_cast<ChromeURLRequestContext*>(request->context())-> 29 return static_cast<ChromeURLRequestContext*>(request->context())->
(...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after
387 net::ERR_INVALID_URL)); 387 net::ERR_INVALID_URL));
388 } 388 }
389 } 389 }
390 390
391 URLRequestChromeFileJob::URLRequestChromeFileJob(net::URLRequest* request, 391 URLRequestChromeFileJob::URLRequestChromeFileJob(net::URLRequest* request,
392 const FilePath& path) 392 const FilePath& path)
393 : net::URLRequestFileJob(request, path) { 393 : net::URLRequestFileJob(request, path) {
394 } 394 }
395 395
396 URLRequestChromeFileJob::~URLRequestChromeFileJob() {} 396 URLRequestChromeFileJob::~URLRequestChromeFileJob() {}
OLDNEW
« no previous file with comments | « chrome/browser/renderer_host/browser_render_process_host.cc ('k') | chrome/browser/worker_host/worker_process_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698