Chromium Code Reviews| Index: chrome/browser/sync/test/integration/password_manager_setting_migrater_helper.h |
| diff --git a/chrome/browser/sync/test/integration/password_manager_setting_migrater_helper.h b/chrome/browser/sync/test/integration/password_manager_setting_migrater_helper.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..3cd069b5d30815277fdc2b82651529eff6a29343 |
| --- /dev/null |
| +++ b/chrome/browser/sync/test/integration/password_manager_setting_migrater_helper.h |
| @@ -0,0 +1,25 @@ |
| +// Copyright (c) 2015 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| +#ifndef CHROME_BROWSER_SYNC_TEST_INTEGRATION_PASSWORD_MANAGER_SETTING_MIGRATER_HELPER_H_ |
| +#define CHROME_BROWSER_SYNC_TEST_INTEGRATION_PASSWORD_MANAGER_SETTING_MIGRATER_HELPER_H_ |
| + |
| +namespace base { |
| +class FieldTrial; |
| +} |
| + |
| +class Profile; |
| + |
| +namespace password_manager_setting_migrater_helper { |
| + |
| +base::FieldTrial* MigrationFieldTrial(); |
|
pval...(no longer on Chromium)
2015/09/10 18:03:25
should this method name be prefixed with Get?
melandory
2015/09/10 20:38:43
Done.
|
| + |
| +void SendProfileAddNotification(Profile* profile); |
|
pval...(no longer on Chromium)
2015/09/10 18:03:25
add method comments here
melandory
2015/09/10 20:38:43
Done.
|
| + |
| +void AssertPrefValuesOnClient(int index, |
| + bool new_pref_value, |
| + bool old_pref_value); |
| + |
| +} // namespace password_manager_setting_migrater_helper |
| + |
| +#endif // CHROME_BROWSER_SYNC_TEST_INTEGRATION_PASSWORD_MANAGER_SETTING_MIGRATER_HELPER_H_ |