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

Side by Side Diff: components/prefs/BUILD.gn

Issue 2812863002: Pref service: Add a ScopedDictionaryPrefUpdate to track value changes. (Closed)
Patch Set: rebase Created 3 years, 8 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 | « no previous file | components/prefs/pref_service.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 2015 The Chromium Authors. All rights reserved. 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 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 component("prefs") { 5 component("prefs") {
6 sources = [ 6 sources = [
7 "base_prefs_export.h", 7 "base_prefs_export.h",
8 "command_line_pref_store.cc", 8 "command_line_pref_store.cc",
9 "command_line_pref_store.h", 9 "command_line_pref_store.h",
10 "default_pref_store.cc", 10 "default_pref_store.cc",
(...skipping 25 matching lines...) Expand all
36 "pref_store.cc", 36 "pref_store.cc",
37 "pref_store.h", 37 "pref_store.h",
38 "pref_value_map.cc", 38 "pref_value_map.cc",
39 "pref_value_map.h", 39 "pref_value_map.h",
40 "pref_value_store.cc", 40 "pref_value_store.cc",
41 "pref_value_store.h", 41 "pref_value_store.h",
42 "scoped_user_pref_update.cc", 42 "scoped_user_pref_update.cc",
43 "scoped_user_pref_update.h", 43 "scoped_user_pref_update.h",
44 "value_map_pref_store.cc", 44 "value_map_pref_store.cc",
45 "value_map_pref_store.h", 45 "value_map_pref_store.h",
46 "writeable_pref_store.cc",
46 "writeable_pref_store.h", 47 "writeable_pref_store.h",
47 ] 48 ]
48 49
49 defines = [ "COMPONENTS_PREFS_IMPLEMENTATION" ] 50 defines = [ "COMPONENTS_PREFS_IMPLEMENTATION" ]
50 51
51 deps = [ 52 deps = [
52 "//base", 53 "//base",
53 ] 54 ]
54 } 55 }
55 56
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 ] 94 ]
94 95
95 deps = [ 96 deps = [
96 ":test_support", 97 ":test_support",
97 "//base", 98 "//base",
98 "//base/test:test_support", 99 "//base/test:test_support",
99 "//testing/gmock", 100 "//testing/gmock",
100 "//testing/gtest", 101 "//testing/gtest",
101 ] 102 ]
102 } 103 }
OLDNEW
« no previous file with comments | « no previous file | components/prefs/pref_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698