Chromium Code Reviews| Index: chrome/service/service_process_prefs.h |
| diff --git a/chrome/service/service_process_prefs.h b/chrome/service/service_process_prefs.h |
| index ef6d836e98276b271ce8801ca7c9f9ca918fa567..d2c0453fabfc364b1ea92dbc57c91d7502e05a9f 100644 |
| --- a/chrome/service/service_process_prefs.h |
| +++ b/chrome/service/service_process_prefs.h |
| @@ -12,16 +12,17 @@ |
| namespace base { |
| class DictionaryValue; |
| class ListValue; |
| +class SequencedWorkerPool; |
| } |
| // Manages persistent preferences for the service process. This is basically a |
| // thin wrapper around JsonPrefStore for more comfortable use. |
| class ServiceProcessPrefs { |
| public: |
| - // |file_message_loop_proxy| is the MessageLoopProxy for a thread on which |
| - // file I/O can be done. |
| + // |blocking_pool| is the SequencedWorkerPool for on which file I/O can be |
| + // done. |
| ServiceProcessPrefs(const FilePath& pref_filename, |
| - base::MessageLoopProxy* file_message_loop_proxy); |
| + base::SequencedWorkerPool* blocking_pool); |
|
akalin
2012/10/19 02:00:51
can you make this take an STR instead?
(Did I men
zel
2012/10/19 18:45:07
Done.
zel
2012/10/19 18:45:07
Done.
|
| ~ServiceProcessPrefs(); |
| // Read preferences from the backing file. |