OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 CHROME_BROWSER_SYNC_TEST_INTEGRATION_PREFERENCES_HELPER_H_ | 5 #ifndef CHROME_BROWSER_SYNC_TEST_INTEGRATION_PREFERENCES_HELPER_H_ |
6 #define CHROME_BROWSER_SYNC_TEST_INTEGRATION_PREFERENCES_HELPER_H_ | 6 #define CHROME_BROWSER_SYNC_TEST_INTEGRATION_PREFERENCES_HELPER_H_ |
7 #pragma once | |
8 | 7 |
9 #include "base/file_path.h" | 8 #include "base/file_path.h" |
10 #include "base/values.h" | 9 #include "base/values.h" |
11 | 10 |
12 #include <string> | 11 #include <string> |
13 | 12 |
14 class PrefService; | 13 class PrefService; |
15 | 14 |
16 namespace preferences_helper { | 15 namespace preferences_helper { |
17 | 16 |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 bool FilePathPrefMatches(const char* pref_name) WARN_UNUSED_RESULT; | 100 bool FilePathPrefMatches(const char* pref_name) WARN_UNUSED_RESULT; |
102 | 101 |
103 // Used to verify that the list preference with name |pref_name| has the | 102 // Used to verify that the list preference with name |pref_name| has the |
104 // same value across all profiles. Also checks |verifier| if DisableVerifier() | 103 // same value across all profiles. Also checks |verifier| if DisableVerifier() |
105 // hasn't been called. | 104 // hasn't been called. |
106 bool ListPrefMatches(const char* pref_name) WARN_UNUSED_RESULT; | 105 bool ListPrefMatches(const char* pref_name) WARN_UNUSED_RESULT; |
107 | 106 |
108 } // namespace preferences_helper | 107 } // namespace preferences_helper |
109 | 108 |
110 #endif // CHROME_BROWSER_SYNC_TEST_INTEGRATION_PREFERENCES_HELPER_H_ | 109 #endif // CHROME_BROWSER_SYNC_TEST_INTEGRATION_PREFERENCES_HELPER_H_ |
OLD | NEW |