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

Unified Diff: chrome/browser/extensions/api/system_info_storage/test_storage_info_provider.h

Issue 16707002: [SystemInfo API] Rewrite storage info provider using storage monitor impl. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update Created 7 years, 6 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
Index: chrome/browser/extensions/api/system_info_storage/test_storage_info_provider.h
diff --git a/chrome/browser/extensions/api/system_info_storage/test_storage_info_provider.h b/chrome/browser/extensions/api/system_info_storage/test_storage_info_provider.h
new file mode 100644
index 0000000000000000000000000000000000000000..db67882fd29f67fd945e1f3e07ef16025f1c194f
--- /dev/null
+++ b/chrome/browser/extensions/api/system_info_storage/test_storage_info_provider.h
@@ -0,0 +1,52 @@
+// Copyright 2013 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_EXTENSIONS_API_SYSTEM_INFO_STORAGE_TEST_STORAGE_INFO_PROVIDER_H_
+#define CHROME_BROWSER_EXTENSIONS_API_SYSTEM_INFO_STORAGE_TEST_STORAGE_INFO_PROVIDER_H_
+
+#include <vector>
+
+#include "chrome/browser/extensions/api/system_info_storage/storage_info_provider.h"
+#include "chrome/browser/storage_monitor/storage_info.h"
+
+struct TestUnitInfo {
Jeffrey Yasskin 2013/07/02 23:00:50 You can't put a name this general into the global
Haojian Wu 2013/07/03 16:23:49 Done.
+ const char* device_id;
+ const char* transient_id;
+ const char* name;
+ const char* type;
+ // Total amount of the storage device space, in bytes.
+ double capacity;
+ // The available amount of the storage space, in bytes.
+ double available_capacity;
+ // The change step of available capacity for simulating the free space change.
+ // Each querying operation will increase the |available_capacity| with this
+ // value.
+ int change_step;
+};
+
+class TestStorageInfoProvider : public extensions::StorageInfoProvider {
+ public:
+ TestStorageInfoProvider(const struct TestUnitInfo* testing_data, size_t n);
Jeffrey Yasskin 2013/07/02 23:00:50 Document what this class does.
Haojian Wu 2013/07/03 16:23:49 Done.
+
+ static chrome::StorageInfo BuildStorageInfo(const TestUnitInfo& unit);
+
+ virtual std::string GetTransientIdForDeviceId(
+ const std::string& device_id) const OVERRIDE;
+ virtual std::string GetDeviceIdForTransientId(
+ const std::string& transient_id) const OVERRIDE;
+
+ protected:
+ virtual ~TestStorageInfoProvider();
+
+ // StorageInfoProvider implementations.
+ virtual bool QueryInfo(extensions::StorageInfo* info) OVERRIDE;
+ virtual std::vector<chrome::StorageInfo> GetAllStorages() const OVERRIDE;
+ virtual int64 GetStorageFreeSpaceFromTransientId(
+ const std::string& transient_id) OVERRIDE;
+
+ std::vector<struct TestUnitInfo> testing_data_;
+};
+
+#endif // CHROME_BROWSER_EXTENSIONS_API_SYSTEM_INFO_STORAGE_TEST_STORAGE_INFO_PROVIDER_H_
+

Powered by Google App Engine
This is Rietveld 408576698