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

Unified Diff: chrome/browser/file_system/browser_file_system_context.h

Issue 5633008: Remove BrowserFileSystemContext class (merge into SandboxedFSContext) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/file_system/browser_file_system_context.h
diff --git a/chrome/browser/file_system/browser_file_system_context.h b/chrome/browser/file_system/browser_file_system_context.h
deleted file mode 100644
index 80821793c63731b22b156db32c24f9f3a2fe6063..0000000000000000000000000000000000000000
--- a/chrome/browser/file_system/browser_file_system_context.h
+++ /dev/null
@@ -1,35 +0,0 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CHROME_BROWSER_FILE_SYSTEM_BROWSER_FILE_SYSTEM_CONTEXT_H_
-#define CHROME_BROWSER_FILE_SYSTEM_BROWSER_FILE_SYSTEM_CONTEXT_H_
-
-#include "base/ref_counted.h"
-#include "base/scoped_ptr.h"
-#include "chrome/browser/browser_thread.h"
-#include "webkit/fileapi/sandboxed_file_system_context.h"
-
-class FilePath;
-class GURL;
-
-// This is owned by profile and shared by all the FileSystemDispatcherHost
-// that shared by the same profile. This class is just a thin wrapper around
-// fileapi::SandboxedFileSystemContext.
-class BrowserFileSystemContext
- : public base::RefCountedThreadSafe<BrowserFileSystemContext,
- BrowserThread::DeleteOnIOThread>,
- public fileapi::SandboxedFileSystemContext {
- public:
- BrowserFileSystemContext(const FilePath& profile_path, bool is_incognito);
- virtual ~BrowserFileSystemContext();
-
- // Quota related methods.
- void SetOriginQuotaUnlimited(const GURL& url);
- void ResetOriginQuotaUnlimited(const GURL& url);
-
- private:
- DISALLOW_IMPLICIT_CONSTRUCTORS(BrowserFileSystemContext);
-};
-
-#endif // CHROME_BROWSER_FILE_SYSTEM_BROWSER_FILE_SYSTEM_CONTEXT_H_
« no previous file with comments | « chrome/browser/extensions/extensions_service_unittest.cc ('k') | chrome/browser/file_system/browser_file_system_context.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698