OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 COMPONENTS_UPDATE_CLIENT_TEST_TEST_CONFIGURATOR_H_ | 5 #ifndef COMPONENTS_UPDATE_CLIENT_TEST_CONFIGURATOR_H_ |
6 #define COMPONENTS_UPDATE_CLIENT_TEST_TEST_CONFIGURATOR_H_ | 6 #define COMPONENTS_UPDATE_CLIENT_TEST_CONFIGURATOR_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <utility> | 9 #include <utility> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "base/callback.h" | 12 #include "base/callback.h" |
13 #include "base/compiler_specific.h" | 13 #include "base/compiler_specific.h" |
14 #include "base/macros.h" | 14 #include "base/macros.h" |
15 #include "base/memory/ref_counted.h" | 15 #include "base/memory/ref_counted.h" |
16 #include "components/update_client/configurator.h" | 16 #include "components/update_client/configurator.h" |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 int ondemand_time_; | 101 int ondemand_time_; |
102 | 102 |
103 scoped_refptr<net::TestURLRequestContextGetter> context_; | 103 scoped_refptr<net::TestURLRequestContextGetter> context_; |
104 base::Closure quit_closure_; | 104 base::Closure quit_closure_; |
105 | 105 |
106 DISALLOW_COPY_AND_ASSIGN(TestConfigurator); | 106 DISALLOW_COPY_AND_ASSIGN(TestConfigurator); |
107 }; | 107 }; |
108 | 108 |
109 } // namespace update_client | 109 } // namespace update_client |
110 | 110 |
111 #endif // COMPONENTS_UPDATE_CLIENT_TEST_TEST_CONFIGURATOR_H_ | 111 #endif // COMPONENTS_UPDATE_CLIENT_TEST_CONFIGURATOR_H_ |
OLD | NEW |