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

Side by Side Diff: prefs/json_pref_store.h

Issue 2043183002: Update to Chromium //base at Chromium commit 01cb97b2e09618bbc3a60c7348f0a844eea20547. (Closed) Base URL: https://github.com/domokit/base.git@master
Patch Set: Created 4 years, 6 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
« no previous file with comments | « message_loop/message_loop.cc ('k') | process/launch_win.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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium 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 BASE_PREFS_JSON_PREF_STORE_H_ 5 #ifndef BASE_PREFS_JSON_PREF_STORE_H_
6 #define BASE_PREFS_JSON_PREF_STORE_H_ 6 #define BASE_PREFS_JSON_PREF_STORE_H_
7 7
8 #include <set> 8 #include <set>
9 #include <string> 9 #include <string>
10 10
11 #include "base/basictypes.h" 11 #include "base/basictypes.h"
12 #include "base/callback_forward.h" 12 #include "base/callback_forward.h"
13 #include "base/compiler_specific.h" 13 #include "base/compiler_specific.h"
14 #include "base/files/file_path.h" 14 #include "base/files/file_path.h"
15 #include "base/files/important_file_writer.h" 15 #include "base/files/important_file_writer.h"
16 #include "base/gtest_prod_util.h" 16 #include "base/gtest_prod_util.h"
17 #include "base/memory/scoped_ptr.h" 17 #include "base/memory/scoped_ptr.h"
18 #include "base/memory/scoped_vector.h"
19 #include "base/memory/weak_ptr.h" 18 #include "base/memory/weak_ptr.h"
20 #include "base/observer_list.h" 19 #include "base/observer_list.h"
21 #include "base/prefs/base_prefs_export.h" 20 #include "base/prefs/base_prefs_export.h"
22 #include "base/prefs/persistent_pref_store.h" 21 #include "base/prefs/persistent_pref_store.h"
23 #include "base/threading/non_thread_safe.h" 22 #include "base/threading/non_thread_safe.h"
24 23
25 class PrefFilter; 24 class PrefFilter;
26 25
27 namespace base { 26 namespace base {
28 class Clock; 27 class Clock;
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 PrefReadError read_error_; 218 PrefReadError read_error_;
220 219
221 std::set<std::string> keys_need_empty_value_; 220 std::set<std::string> keys_need_empty_value_;
222 221
223 WriteCountHistogram write_count_histogram_; 222 WriteCountHistogram write_count_histogram_;
224 223
225 DISALLOW_COPY_AND_ASSIGN(JsonPrefStore); 224 DISALLOW_COPY_AND_ASSIGN(JsonPrefStore);
226 }; 225 };
227 226
228 #endif // BASE_PREFS_JSON_PREF_STORE_H_ 227 #endif // BASE_PREFS_JSON_PREF_STORE_H_
OLDNEW
« no previous file with comments | « message_loop/message_loop.cc ('k') | process/launch_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698