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

Side by Side Diff: prefs_interface.h

Issue 5993007: AU: Send a previous version event after reboot following an update. (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/update_engine.git@master
Patch Set: GetString appends to the string Created 9 years, 11 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 | « prefs.cc ('k') | update_attempter.cc » ('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 #ifndef CHROMEOS_PLATFORM_UPDATE_ENGINE_PREFS_INTERFACE_H__ 5 #ifndef CHROMEOS_PLATFORM_UPDATE_ENGINE_PREFS_INTERFACE_H__
6 #define CHROMEOS_PLATFORM_UPDATE_ENGINE_PREFS_INTERFACE_H__ 6 #define CHROMEOS_PLATFORM_UPDATE_ENGINE_PREFS_INTERFACE_H__
7 7
8 #include <string> 8 #include <string>
9 9
10 namespace chromeos_update_engine { 10 namespace chromeos_update_engine {
11 11
12 extern const char kPrefsDeltaUpdateFailures[]; 12 extern const char kPrefsDeltaUpdateFailures[];
13 extern const char kPrefsLastActivePingDay[]; 13 extern const char kPrefsLastActivePingDay[];
14 extern const char kPrefsLastRollCallPingDay[]; 14 extern const char kPrefsLastRollCallPingDay[];
15 extern const char kPrefsManifestMetadataSize[]; 15 extern const char kPrefsManifestMetadataSize[];
16 extern const char kPrefsPreviousVersion[];
16 extern const char kPrefsResumedUpdateFailures[]; 17 extern const char kPrefsResumedUpdateFailures[];
17 extern const char kPrefsUpdateCheckResponseHash[]; 18 extern const char kPrefsUpdateCheckResponseHash[];
18 extern const char kPrefsUpdateStateNextDataOffset[]; 19 extern const char kPrefsUpdateStateNextDataOffset[];
19 extern const char kPrefsUpdateStateNextOperation[]; 20 extern const char kPrefsUpdateStateNextOperation[];
20 extern const char kPrefsUpdateStateSHA256Context[]; 21 extern const char kPrefsUpdateStateSHA256Context[];
21 extern const char kPrefsUpdateStateSignedSHA256Context[]; 22 extern const char kPrefsUpdateStateSignedSHA256Context[];
22 23
23 // The prefs interface allows access to a persistent preferences 24 // The prefs interface allows access to a persistent preferences
24 // store. The two reasons for providing this as an interface are 25 // store. The two reasons for providing this as an interface are
25 // testing as well as easier switching to a new implementation in the 26 // testing as well as easier switching to a new implementation in the
(...skipping 18 matching lines...) Expand all
44 // Associates |key| with an int64 |value|. Returns true on success, 45 // Associates |key| with an int64 |value|. Returns true on success,
45 // false otherwise. 46 // false otherwise.
46 virtual bool SetInt64(const std::string& key, const int64_t value) = 0; 47 virtual bool SetInt64(const std::string& key, const int64_t value) = 0;
47 48
48 virtual ~PrefsInterface() {} 49 virtual ~PrefsInterface() {}
49 }; 50 };
50 51
51 } // namespace chromeos_update_engine 52 } // namespace chromeos_update_engine
52 53
53 #endif // CHROMEOS_PLATFORM_UPDATE_ENGINE_PREFS_INTERFACE_H__ 54 #endif // CHROMEOS_PLATFORM_UPDATE_ENGINE_PREFS_INTERFACE_H__
OLDNEW
« no previous file with comments | « prefs.cc ('k') | update_attempter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698