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

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

Issue 3814013: FBTF: Monster ctor patch after changing heuristics in clang plugin. (Closed) Base URL: http://git.chromium.org/git/chromium.git
Patch Set: More add file fail Created 10 years, 2 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) 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
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() {}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698