Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2015 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 COMPONENTS_DOMAIN_RELIABILITY_GOOGLE_CONFIGS_H_ | |
| 6 #define COMPONENTS_DOMAIN_RELIABILITY_GOOGLE_CONFIGS_H_ | |
| 7 | |
| 8 #include "base/memory/scoped_ptr.h" | |
| 9 #include "components/domain_reliability/config.h" | |
| 10 #include "components/domain_reliability/domain_reliability_export.h" | |
| 11 | |
| 12 namespace domain_reliability { | |
| 13 | |
| 14 void DOMAIN_RELIABILITY_EXPORT GetAllGoogleConfigs( | |
| 15 std::vector<DomainReliabilityConfig*>* configs_out); | |
|
Randy Smith (Not in Mondays)
2015/10/29 22:36:11
nit, idea (weaker than a suggestion): Did you cons
Deprecated (see juliatuttle)
2015/11/02 23:19:30
I did consider it, but it felt uglier to me. :)
Randy Smith (Not in Mondays)
2015/11/03 21:48:12
Acknowledged.
| |
| 16 | |
| 17 } // namespace domain_reliability | |
| 18 | |
| 19 #endif // COMPONENTS_DOMAIN_RELIABILITY_GOOGLE_CONFIGS_H_ | |
| OLD | NEW |