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

Side by Side Diff: ios/public/provider/chrome/browser/test_chrome_provider_initializer.h

Issue 1663783002: Remove the //ios/public/test target. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ios_tests
Patch Set: Add missing forwarding-header Created 4 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 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 IOS_PUBLIC_TEST_TEST_CHROME_PROVIDER_INITIALIZER_H_ 5 #ifndef IOS_PUBLIC_PROVIDER_CHROME_BROWSER_TEST_CHROME_PROVIDER_INITIALIZER_H_
6 #define IOS_PUBLIC_TEST_TEST_CHROME_PROVIDER_INITIALIZER_H_ 6 #define IOS_PUBLIC_PROVIDER_CHROME_BROWSER_TEST_CHROME_PROVIDER_INITIALIZER_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 10
11 namespace ios { 11 namespace ios {
12 12
13 class TestChromeBrowserProvider; 13 class TestChromeBrowserProvider;
14 14
15 // Initializes various objects needed to run unit tests that use ios:: 15 // Initializes various objects needed to run unit tests that use ios::
16 // objects. Currently this includes setting up the chrome browser provider as 16 // objects. Currently this includes setting up the chrome browser provider as
17 // a |TestChromeBrowserProvider|. 17 // a |TestChromeBrowserProvider|.
18 class TestChromeProviderInitializer { 18 class TestChromeProviderInitializer {
19 public: 19 public:
20 TestChromeProviderInitializer(); 20 TestChromeProviderInitializer();
21 virtual ~TestChromeProviderInitializer(); 21 virtual ~TestChromeProviderInitializer();
22 22
23 private: 23 private:
24 scoped_ptr<TestChromeBrowserProvider> chrome_browser_provider_; 24 scoped_ptr<TestChromeBrowserProvider> chrome_browser_provider_;
25 25
26 DISALLOW_COPY_AND_ASSIGN(TestChromeProviderInitializer); 26 DISALLOW_COPY_AND_ASSIGN(TestChromeProviderInitializer);
27 }; 27 };
28 28
29 } // namespace ios 29 } // namespace ios
30 30
31 #endif // IOS_PUBLIC_TEST_TEST_CHROME_PROVIDER_INITIALIZER_H_ 31 #endif // IOS_PUBLIC_PROVIDER_CHROME_BROWSER_TEST_CHROME_PROVIDER_INITIALIZER_H _
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698