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

Side by Side Diff: chrome/browser/safe_browsing/incident_reporting/platform_state_store.h

Issue 1243293003: Platform-specific prune state storage. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@prune1
Patch Set: new comment and unit test Created 5 years, 3 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
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 // An interface to platform-specific storage of IncidentReportingService prune
6 // state.
7
8 #ifndef CHROME_BROWSER_SAFE_BROWSING_INCIDENT_REPORTING_PLATFORM_STATE_STORE_H_
9 #define CHROME_BROWSER_SAFE_BROWSING_INCIDENT_REPORTING_PLATFORM_STATE_STORE_H_
10
11 #include <stdint.h>
12 #include <string>
13
14 #include "base/memory/scoped_ptr.h"
15 #include "build/build_config.h"
16
17 // Certain platforms provide their own storage of protobuf-serialized prune
18 // state. On platforms where it is not supported, Load() and Store() are noops.
19 #if defined(OS_WIN)
20 // Store the state in the registry on Windows.
21 #define USE_PLATFORM_STATE_STORE
22 #endif
23
24 class Profile;
25
26 namespace base {
27 class DictionaryValue;
28 }
29
30 namespace safe_browsing {
31 namespace platform_state_store {
32
33 // Loads the platform-specific storage for |profile|. Returns null if there is
34 // no such storage for the current platform or in case of error; otherwise, a
35 // (possibly empty) dictionary.
36 scoped_ptr<base::DictionaryValue> Load(Profile* profile);
37
38 // Stores the state for |profile| in |incidents_sent| into platform-specific
39 // storage if there is such for the current platform.
40 void Store(Profile* profile, const base::DictionaryValue* incidents_sent);
41
42 #if defined(USE_PLATFORM_STATE_STORE)
robertshield 2015/09/01 14:20:12 I thought it more conventional to provide empty st
grt (UTC plus 2) 2015/09/03 18:12:05 Load/Store above are the public functions, and exi
43
44 // All declarations and definitions from this point forward are for use by
45 // implementations in platform-specific source files, or are exposed for the
46 // sake of testing.
robertshield 2015/09/01 14:20:12 could these be placed in an internal namespace? If
grt (UTC plus 2) 2015/09/03 18:12:05 I have been told explicitly not to do that: https:
robertshield 2015/09/05 03:23:24 Hrm, ok. Not sure I agree with the premise of that
Peter Kasting 2015/09/05 03:31:55 I don't have any problem with that solution.
47
48 // The result of loading platform-specific state. This is a histogram type; do
49 // not reorder.
50 enum class PlatformStateStoreLoadResult : int32_t {
51 SUCCESS = 0,
52 CLEARED_DATA = 1,
53 CLEARED_NO_DATA = 2,
54 DATA_CLEAR_FAILED = 3,
55 OPEN_FAILED = 4,
56 READ_FAILED = 5,
57 PARSE_ERROR = 6,
58 NUM_RESULTS
59 };
60
61 // A platform-specific function to read store data for |profile| into |data|.
62 // Returns SUCCESS if |data| was populated, or a load result value indicating
63 // why no data was read.
64 PlatformStateStoreLoadResult ReadStoreData(Profile* profile, std::string* data);
65
66 // A platform-specific function to write store data for |profile| from |data|.
67 void WriteStoreData(Profile* profile, const std::string& data);
68
69 // Serializes the |incidents_sent| preference into |data|, replacing its
70 // contents. Exposed for testing.
71 void SerializeIncidentsSent(const base::DictionaryValue* incidents_sent,
72 std::string* data);
73
74 // Deserializes |data| into |value_dict|. Returns SUCCESS if |data| is empty or
75 // fully processed. Exposed for testing.
76 PlatformStateStoreLoadResult DeserializeIncidentsSent(
77 const std::string& data,
78 base::DictionaryValue* value_dict);
79
80 #endif // USE_PLATFORM_STATE_STORE
81
82 } // namespace platform_state_store
83 } // namespace safe_browsing
84
85 #endif // CHROME_BROWSER_SAFE_BROWSING_INCIDENT_REPORTING_PLATFORM_STATE_STORE_ H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698