| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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_TEST_BASE_SCOPED_TESTING_LOCAL_STATE_H_ | 5 #ifndef CHROME_TEST_BASE_SCOPED_TESTING_LOCAL_STATE_H_ |
| 6 #define CHROME_TEST_BASE_SCOPED_TESTING_LOCAL_STATE_H_ | 6 #define CHROME_TEST_BASE_SCOPED_TESTING_LOCAL_STATE_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "base/prefs/testing_pref_service.h" | 9 #include "components/prefs/testing_pref_service.h" |
| 10 | 10 |
| 11 class TestingBrowserProcess; | 11 class TestingBrowserProcess; |
| 12 | 12 |
| 13 // Helper class to temporarily set up a |local_state| in the global | 13 // Helper class to temporarily set up a |local_state| in the global |
| 14 // TestingBrowserProcess (for most unit tests it's NULL). | 14 // TestingBrowserProcess (for most unit tests it's NULL). |
| 15 class ScopedTestingLocalState { | 15 class ScopedTestingLocalState { |
| 16 public: | 16 public: |
| 17 explicit ScopedTestingLocalState(TestingBrowserProcess* browser_process); | 17 explicit ScopedTestingLocalState(TestingBrowserProcess* browser_process); |
| 18 ~ScopedTestingLocalState(); | 18 ~ScopedTestingLocalState(); |
| 19 | 19 |
| 20 TestingPrefServiceSimple* Get() { | 20 TestingPrefServiceSimple* Get() { |
| 21 return &local_state_; | 21 return &local_state_; |
| 22 } | 22 } |
| 23 | 23 |
| 24 private: | 24 private: |
| 25 TestingBrowserProcess* browser_process_; | 25 TestingBrowserProcess* browser_process_; |
| 26 TestingPrefServiceSimple local_state_; | 26 TestingPrefServiceSimple local_state_; |
| 27 | 27 |
| 28 DISALLOW_COPY_AND_ASSIGN(ScopedTestingLocalState); | 28 DISALLOW_COPY_AND_ASSIGN(ScopedTestingLocalState); |
| 29 }; | 29 }; |
| 30 | 30 |
| 31 #endif // CHROME_TEST_BASE_SCOPED_TESTING_LOCAL_STATE_H_ | 31 #endif // CHROME_TEST_BASE_SCOPED_TESTING_LOCAL_STATE_H_ |
| OLD | NEW |