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

Side by Side Diff: chrome/browser/file_system/file_system_dispatcher_host.cc

Issue 5367006: Refactor: move HostContentSettingsMap to content_settings (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase again Created 10 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
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/file_system/file_system_dispatcher_host.h" 5 #include "chrome/browser/file_system/file_system_dispatcher_host.h"
6 6
7 #include "base/file_path.h" 7 #include "base/file_path.h"
8 #include "base/thread.h" 8 #include "base/thread.h"
9 #include "base/time.h" 9 #include "base/time.h"
10 #include "chrome/browser/browser_process.h" 10 #include "chrome/browser/browser_process.h"
11 #include "chrome/browser/browser_thread.h" 11 #include "chrome/browser/browser_thread.h"
12 #include "chrome/browser/content_settings/host_content_settings_map.h"
12 #include "chrome/browser/file_system/browser_file_system_callback_dispatcher.h" 13 #include "chrome/browser/file_system/browser_file_system_callback_dispatcher.h"
13 #include "chrome/browser/file_system/browser_file_system_context.h" 14 #include "chrome/browser/file_system/browser_file_system_context.h"
14 #include "chrome/browser/host_content_settings_map.h"
15 #include "chrome/browser/net/chrome_url_request_context.h" 15 #include "chrome/browser/net/chrome_url_request_context.h"
16 #include "chrome/browser/profile.h" 16 #include "chrome/browser/profile.h"
17 #include "chrome/browser/renderer_host/browser_render_process_host.h" 17 #include "chrome/browser/renderer_host/browser_render_process_host.h"
18 #include "chrome/common/net/url_request_context_getter.h" 18 #include "chrome/common/net/url_request_context_getter.h"
19 #include "chrome/common/render_messages.h" 19 #include "chrome/common/render_messages.h"
20 #include "chrome/common/render_messages_params.h" 20 #include "chrome/common/render_messages_params.h"
21 #include "googleurl/src/gurl.h" 21 #include "googleurl/src/gurl.h"
22 #include "net/url_request/url_request_context.h" 22 #include "net/url_request/url_request_context.h"
23 #include "webkit/fileapi/file_system_operation.h" 23 #include "webkit/fileapi/file_system_operation.h"
24 #include "webkit/fileapi/file_system_path_manager.h" 24 #include "webkit/fileapi/file_system_path_manager.h"
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 BrowserThread::GetMessageLoopProxyForThread(BrowserThread::FILE), 214 BrowserThread::GetMessageLoopProxyForThread(BrowserThread::FILE),
215 context_.get()); 215 context_.get());
216 operations_.AddWithID(operation, request_id); 216 operations_.AddWithID(operation, request_id);
217 return operation; 217 return operation;
218 } 218 }
219 219
220 void FileSystemDispatcherHost::RemoveCompletedOperation(int request_id) { 220 void FileSystemDispatcherHost::RemoveCompletedOperation(int request_id) {
221 DCHECK(operations_.Lookup(request_id)); 221 DCHECK(operations_.Lookup(request_id));
222 operations_.Remove(request_id); 222 operations_.Remove(request_id);
223 } 223 }
OLDNEW
« no previous file with comments | « chrome/browser/dom_ui/options/content_settings_handler.cc ('k') | chrome/browser/gtk/content_setting_bubble_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698