Index: chrome/browser/extensions/settings/settings_api.cc |
diff --git a/chrome/browser/extensions/settings/settings_api.cc b/chrome/browser/extensions/settings/settings_api.cc |
index ba277ffa7d6401563611fcd251b992f09eafabf7..14fbf52cd6234130fd2fbb1c6ff7ebca82ef763d 100644 |
--- a/chrome/browser/extensions/settings/settings_api.cc |
+++ b/chrome/browser/extensions/settings/settings_api.cc |
@@ -1,4 +1,4 @@ |
-// Copyright (c) 2011 The Chromium Authors. All rights reserved. |
+// Copyright (c) 2012 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. |
@@ -182,6 +182,41 @@ bool GetSettingsFunction::RunWithStorage(SettingsStorage* storage) { |
} |
} |
+bool GetBytesInUseSettingsFunction::RunWithStorage(SettingsStorage* storage) { |
+ DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE)); |
+ Value *input; |
Aaron Boodman
2012/01/24 23:40:53
*twitch* - initialize primitives.
not at google - send to devlin
2012/01/25 00:00:14
Done.
oops, fixed up the other cases of this (thi
|
+ EXTENSION_FUNCTION_VALIDATE(args_->Get(0, &input)); |
+ |
+ size_t bytes_in_use = 0; |
+ |
+ switch (input->GetType()) { |
+ case Value::TYPE_NULL: |
+ bytes_in_use = storage->GetBytesInUse(); |
+ break; |
+ |
+ case Value::TYPE_STRING: { |
+ std::string as_string; |
+ input->GetAsString(&as_string); |
+ bytes_in_use = storage->GetBytesInUse(as_string); |
+ break; |
+ } |
+ |
+ case Value::TYPE_LIST: { |
+ std::vector<std::string> as_string_list; |
+ AddAllStringValues(*static_cast<ListValue*>(input), &as_string_list); |
+ bytes_in_use = storage->GetBytesInUse(as_string_list); |
+ break; |
+ } |
+ |
+ default: |
+ error_ = kUnsupportedArgumentType; |
+ return false; |
+ } |
+ |
+ result_.reset(Value::CreateIntegerValue(bytes_in_use)); |
+ return true; |
+} |
+ |
bool SetSettingsFunction::RunWithStorage(SettingsStorage* storage) { |
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE)); |
DictionaryValue* input; |