| OLD | NEW |
| 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_host_context.h" | 5 #include "chrome/browser/file_system/file_system_host_context.h" |
| 6 | 6 |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "base/file_util.h" | 8 #include "base/file_util.h" |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "base/string_util.h" | 10 #include "base/string_util.h" |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 | 34 |
| 35 void FileSystemHostContext::SetOriginQuotaUnlimited(const GURL& url) { | 35 void FileSystemHostContext::SetOriginQuotaUnlimited(const GURL& url) { |
| 36 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); | 36 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); |
| 37 quota_manager_->SetOriginQuotaUnlimited(url); | 37 quota_manager_->SetOriginQuotaUnlimited(url); |
| 38 } | 38 } |
| 39 | 39 |
| 40 void FileSystemHostContext::ResetOriginQuotaUnlimited(const GURL& url) { | 40 void FileSystemHostContext::ResetOriginQuotaUnlimited(const GURL& url) { |
| 41 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); | 41 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); |
| 42 quota_manager_->ResetOriginQuotaUnlimited(url); | 42 quota_manager_->ResetOriginQuotaUnlimited(url); |
| 43 } | 43 } |
| 44 |
| 45 FileSystemHostContext::~FileSystemHostContext() {} |
| OLD | NEW |