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

Unified Diff: chrome/browser/extensions/api/alarms/alarm_manager.cc

Issue 10837155: Persist browserAction settings to the extension StateStore. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: yoyo Created 8 years, 4 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 | « no previous file | chrome/browser/extensions/api/extension_action/extension_actions_api.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/api/alarms/alarm_manager.cc
diff --git a/chrome/browser/extensions/api/alarms/alarm_manager.cc b/chrome/browser/extensions/api/alarms/alarm_manager.cc
index 2b451cd38fde3c36a5a268d434ac84c39f2d4892..d35b619d4efc5136c4c895b177b6756fe749d0db 100644
--- a/chrome/browser/extensions/api/alarms/alarm_manager.cc
+++ b/chrome/browser/extensions/api/alarms/alarm_manager.cc
@@ -70,8 +70,7 @@ std::vector<Alarm> AlarmsFromValue(const base::ListValue* list) {
return alarms;
}
-scoped_ptr<base::ListValue> AlarmsToValue(
- const std::vector<Alarm>& alarms) {
+scoped_ptr<base::ListValue> AlarmsToValue(const std::vector<Alarm>& alarms) {
scoped_ptr<base::ListValue> list(new ListValue());
for (size_t i = 0; i < alarms.size(); ++i) {
scoped_ptr<base::DictionaryValue> alarm =
« no previous file with comments | « no previous file | chrome/browser/extensions/api/extension_action/extension_actions_api.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698