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

Side by Side Diff: components/filesystem/public/cpp/prefs/pref_service_factory.h

Issue 1624683002: mash: Add a simple, temporary preferences store. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: sky comments Created 4 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
OLDNEW
(Empty)
1 // Copyright 2016 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 #ifndef COMPONENTS_FILESYSTEM_PUBLIC_CPP_PREFS_PREF_SERVICE_FACTORY_H_
6 #define COMPONENTS_FILESYSTEM_PUBLIC_CPP_PREFS_PREF_SERVICE_FACTORY_H_
7
8 #include "base/memory/scoped_ptr.h"
9 #include "base/prefs/pref_service.h"
10
11 namespace mojo {
12 class ApplicationImpl;
13 }
14
15 class PrefRegistry;
16
17 namespace filesystem {
18
19 // This factory method creates a PrefService for the local process based on the
20 // preference registry passed in. This PrefService will synchronize with a JSON
21 // file in the mojo:filesystem.
22 scoped_ptr<PrefService> CreatePrefService(mojo::ApplicationImpl* application,
23 PrefRegistry* registry);
24
25 } // namespace filesystem
26
27 #endif // COMPONENTS_FILESYSTEM_PUBLIC_CPP_PREFS_PREF_SERVICE_FACTORY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698