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

Side by Side Diff: chrome/test/base/scoped_testing_local_state.h

Issue 12223091: Split testing_pref_service.h/.cc into two parts, generic vs. Chrome-specific. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address review comments. Created 7 years, 10 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 | Annotate | Revision Log
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef CHROME_TEST_BASE_SCOPED_TESTING_LOCAL_STATE_H_
6 #define CHROME_TEST_BASE_SCOPED_TESTING_LOCAL_STATE_H_
7
8 #include "base/basictypes.h"
9 #include "chrome/test/base/testing_pref_service.h"
10
11 class TestingBrowserProcess;
12
13 // Helper class to temporarily set up a |local_state| in the global
14 // TestingBrowserProcess (for most unit tests it's NULL).
15 class ScopedTestingLocalState {
16 public:
17 explicit ScopedTestingLocalState(TestingBrowserProcess* browser_process);
18 ~ScopedTestingLocalState();
19
20 TestingPrefServiceSimple* Get() {
21 return &local_state_;
22 }
23
24 private:
25 TestingBrowserProcess* browser_process_;
26 TestingPrefServiceSimple local_state_;
27
28 DISALLOW_COPY_AND_ASSIGN(ScopedTestingLocalState);
29 };
30
31 #endif // CHROME_TEST_BASE_SCOPED_TESTING_LOCAL_STATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698