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

Side by Side Diff: prefs.cc

Issue 3547019: AU: DeltaPerformer performs the download size/hash check now. (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/update_engine.git
Patch Set: Created 10 years, 2 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « download_action.cc ('k') | prefs_interface.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium OS Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "update_engine/prefs.h" 5 #include "update_engine/prefs.h"
6 6
7 #include <base/file_util.h> 7 #include <base/file_util.h>
8 #include <base/logging.h> 8 #include <base/logging.h>
9 #include <base/string_number_conversions.h> 9 #include <base/string_number_conversions.h>
10 #include <base/string_util.h> 10 #include <base/string_util.h>
11 11
12 #include "update_engine/utils.h" 12 #include "update_engine/utils.h"
13 13
14 using std::string; 14 using std::string;
15 15
16 namespace chromeos_update_engine { 16 namespace chromeos_update_engine {
17 17
18 const char kPrefsDeltaUpdateFailures[] = "delta-update-failures"; 18 const char kPrefsDeltaUpdateFailures[] = "delta-update-failures";
19 const char kPrefsLastActivePingDay[] = "last-active-ping-day"; 19 const char kPrefsLastActivePingDay[] = "last-active-ping-day";
20 const char kPrefsLastRollCallPingDay[] = "last-roll-call-ping-day"; 20 const char kPrefsLastRollCallPingDay[] = "last-roll-call-ping-day";
21 const char kPrefsManifestMetadataSize[] = "manifest-metadata-size"; 21 const char kPrefsManifestMetadataSize[] = "manifest-metadata-size";
22 const char kPrefsUpdateCheckResponseHash[] = "update-check-response-hash"; 22 const char kPrefsUpdateCheckResponseHash[] = "update-check-response-hash";
23 const char kPrefsUpdateStateNextDataOffset[] = "update-state-next-data-offset"; 23 const char kPrefsUpdateStateNextDataOffset[] = "update-state-next-data-offset";
24 const char kPrefsUpdateStateNextOperation[] = "update-state-next-operation"; 24 const char kPrefsUpdateStateNextOperation[] = "update-state-next-operation";
25 const char kPrefsUpdateStateSHA256Context[] = "update-state-sha-256-context";
25 const char kPrefsUpdateStateSignedSHA256Context[] = 26 const char kPrefsUpdateStateSignedSHA256Context[] =
26 "update-state-signed-sha-256-context"; 27 "update-state-signed-sha-256-context";
27 28
28 bool Prefs::Init(const FilePath& prefs_dir) { 29 bool Prefs::Init(const FilePath& prefs_dir) {
29 prefs_dir_ = prefs_dir; 30 prefs_dir_ = prefs_dir;
30 return true; 31 return true;
31 } 32 }
32 33
33 bool Prefs::GetString(const string& key, string* value) { 34 bool Prefs::GetString(const string& key, string* value) {
34 FilePath filename; 35 FilePath filename;
(...skipping 30 matching lines...) Expand all
65 for (size_t i = 0; i < key.size(); ++i) { 66 for (size_t i = 0; i < key.size(); ++i) {
66 char c = key.at(i); 67 char c = key.at(i);
67 TEST_AND_RETURN_FALSE(IsAsciiAlpha(c) || IsAsciiDigit(c) || 68 TEST_AND_RETURN_FALSE(IsAsciiAlpha(c) || IsAsciiDigit(c) ||
68 c == '_' || c == '-'); 69 c == '_' || c == '-');
69 } 70 }
70 *filename = prefs_dir_.Append(key); 71 *filename = prefs_dir_.Append(key);
71 return true; 72 return true;
72 } 73 }
73 74
74 } // namespace chromeos_update_engine 75 } // namespace chromeos_update_engine
OLDNEW
« no previous file with comments | « download_action.cc ('k') | prefs_interface.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698