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

Side by Side Diff: content/browser/file_system/file_system_dispatcher_host.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
« no previous file with comments | « content/browser/file_system/file_system_dispatcher_host.h ('k') | content/content_browser.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "content/browser/file_system/file_system_dispatcher_host.h"
6 6
7 #include <string> 7 #include <string>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/file_path.h" 10 #include "base/file_path.h"
11 #include "base/threading/thread.h" 11 #include "base/threading/thread.h"
12 #include "base/time.h" 12 #include "base/time.h"
13 #include "chrome/browser/content_settings/host_content_settings_map.h" 13 #include "chrome/browser/content_settings/host_content_settings_map.h"
14 #include "chrome/browser/net/chrome_url_request_context.h" 14 #include "chrome/browser/net/chrome_url_request_context.h"
15 #include "chrome/browser/profiles/profile.h" 15 #include "chrome/browser/profiles/profile.h"
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
241 BrowserThread::GetMessageLoopProxyForThread(BrowserThread::FILE), 241 BrowserThread::GetMessageLoopProxyForThread(BrowserThread::FILE),
242 context_); 242 context_);
243 operations_.AddWithID(operation, request_id); 243 operations_.AddWithID(operation, request_id);
244 return operation; 244 return operation;
245 } 245 }
246 246
247 void FileSystemDispatcherHost::UnregisterOperation(int request_id) { 247 void FileSystemDispatcherHost::UnregisterOperation(int request_id) {
248 DCHECK(operations_.Lookup(request_id)); 248 DCHECK(operations_.Lookup(request_id));
249 operations_.Remove(request_id); 249 operations_.Remove(request_id);
250 } 250 }
OLDNEW
« no previous file with comments | « content/browser/file_system/file_system_dispatcher_host.h ('k') | content/content_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698