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

Unified Diff: webkit/fileapi/file_system_usage_tracker.h

Issue 6426001: Add 1st cut of FileSystemUsageTracker that tracks the usage changes in FileSystem API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: build fix for win 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/fileapi/file_system_path_manager.cc ('k') | webkit/fileapi/file_system_usage_tracker.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/fileapi/file_system_usage_tracker.h
diff --git a/webkit/fileapi/file_system_usage_tracker.h b/webkit/fileapi/file_system_usage_tracker.h
new file mode 100644
index 0000000000000000000000000000000000000000..10a5177d692a9f71ca15d1239596e69ee2e9b047
--- /dev/null
+++ b/webkit/fileapi/file_system_usage_tracker.h
@@ -0,0 +1,71 @@
+// Copyright (c) 2011 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 WEBKIT_FILEAPI_FILE_SYSTEM_USAGE_TRACKER_H_
+#define WEBKIT_FILEAPI_FILE_SYSTEM_USAGE_TRACKER_H_
+
+#include <deque>
+#include <list>
+#include <map>
+#include <string>
+
+#include "base/basictypes.h"
+#include "base/callback.h"
+#include "base/file_path.h"
+#include "base/ref_counted.h"
+#include "webkit/fileapi/file_system_types.h"
+
+class GURL;
+
+namespace base {
+class MessageLoopProxy;
+}
+
+namespace fileapi {
+
+// Owned by the SandboxedFileSystemContext, which is a per-profile
+// instance, and has the same lifetime as the SandboxedFileSystemContext.
+// It's going to be created and destroyed on the IO thread in chrome.
+// (The destruction on the same thread where it is created was guaranteed
+// by its owner, SandboxedFileSystemContext.)
+class FileSystemUsageTracker {
+ public:
+ FileSystemUsageTracker(
+ scoped_refptr<base::MessageLoopProxy> file_message_loop,
+ const FilePath& profile_path,
+ bool is_incognito);
+ ~FileSystemUsageTracker();
+
+ // Get the amount of data stored in the filesystem specified by
+ // |origin_url| and |type|.
+ typedef Callback1<int64 /* usage */>::Type GetUsageCallback;
+ void GetOriginUsage(const GURL& origin_url,
+ fileapi::FileSystemType type,
+ GetUsageCallback* callback);
+
+ private:
+ class GetUsageTask;
+
+ void RegisterUsageTask(GetUsageTask* task);
+ void UnregisterUsageTask(GetUsageTask* task);
+
+ void DidGetOriginUsage(const std::string& fs_name, int64 usage);
+
+ scoped_refptr<base::MessageLoopProxy> file_message_loop_;
+ FilePath base_path_;
+ bool is_incognito_;
+
+ typedef std::deque<GetUsageTask*> UsageTaskQueue;
+ UsageTaskQueue running_usage_tasks_;
+
+ typedef std::list<GetUsageCallback*> PendingCallbackList;
+ typedef std::map<std::string, PendingCallbackList> PendingUsageCallbackMap;
+ PendingUsageCallbackMap pending_usage_callbacks_;
+
+ DISALLOW_COPY_AND_ASSIGN(FileSystemUsageTracker);
+};
+
+} // namespace fileapi
+
+#endif // WEBKIT_FILEAPI_FILE_SYSTEM_USAGE_TRACKER_H_
« no previous file with comments | « webkit/fileapi/file_system_path_manager.cc ('k') | webkit/fileapi/file_system_usage_tracker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698