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 // This file contains utilities related to working with "facets". | 5 // This file contains utilities related to working with "facets". |
6 // | 6 // |
7 // A "facet" is defined as the manifestation of a logical application on a given | 7 // A "facet" is defined as the manifestation of a logical application on a given |
8 // platform. For example, "My Bank" may have released an Android application | 8 // platform. For example, "My Bank" may have released an Android application |
9 // and a Web application accessible from a browser. These are all facets of the | 9 // and a Web application accessible from a browser. These are all facets of the |
10 // "My Bank" logical application. | 10 // "My Bank" logical application. |
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
178 bool IsAffiliationBasedMatchingEnabled(const base::CommandLine& command_line); | 178 bool IsAffiliationBasedMatchingEnabled(const base::CommandLine& command_line); |
179 | 179 |
180 // Returns whether or not propagating password changes to affiliated saved web | 180 // Returns whether or not propagating password changes to affiliated saved web |
181 // credentials is enabled via variation parameters. This allows disabling only | 181 // credentials is enabled via variation parameters. This allows disabling only |
182 // the sub-feature while leaving the rest of the affiliation-based matching | 182 // the sub-feature while leaving the rest of the affiliation-based matching |
183 // enabled. If the main feature is forced enabled/disabled via the command line, | 183 // enabled. If the main feature is forced enabled/disabled via the command line, |
184 // the sub-feature will be force enabled/disabled correspondingly. | 184 // the sub-feature will be force enabled/disabled correspondingly. |
185 bool IsPropagatingPasswordChangesToWebCredentialsEnabled( | 185 bool IsPropagatingPasswordChangesToWebCredentialsEnabled( |
186 const base::CommandLine& command_line); | 186 const base::CommandLine& command_line); |
187 | 187 |
| 188 // Returns whether or not affiliation requests for dummy facets should be |
| 189 // triggered as part of an experiment to exercise AffiliationService code before |
| 190 // users would get a chance to have any real Android-based credentials. If the |
| 191 // main feature is forced enabled/disabled via the command line, the experiment |
| 192 // is force enabled/disabled correspondingly. |
| 193 bool IsAffiliationRequestsForDummyFacetsEnabled( |
| 194 const base::CommandLine& command_line); |
| 195 |
188 // For logging use only. | 196 // For logging use only. |
189 std::ostream& operator<<(std::ostream& os, const FacetURI& facet_uri); | 197 std::ostream& operator<<(std::ostream& os, const FacetURI& facet_uri); |
190 | 198 |
191 } // namespace password_manager | 199 } // namespace password_manager |
192 | 200 |
193 // Provide a hash function so that hash_sets and maps can contain FacetURIs. | 201 // Provide a hash function so that hash_sets and maps can contain FacetURIs. |
194 namespace BASE_HASH_NAMESPACE { | 202 namespace BASE_HASH_NAMESPACE { |
195 | 203 |
196 template <> | 204 template <> |
197 struct hash<password_manager::FacetURI> { | 205 struct hash<password_manager::FacetURI> { |
198 size_t operator()(const password_manager::FacetURI& facet_uri) const { | 206 size_t operator()(const password_manager::FacetURI& facet_uri) const { |
199 return hash<std::string>()(facet_uri.potentially_invalid_spec()); | 207 return hash<std::string>()(facet_uri.potentially_invalid_spec()); |
200 } | 208 } |
201 }; | 209 }; |
202 | 210 |
203 } // namespace BASE_HASH_NAMESPACE | 211 } // namespace BASE_HASH_NAMESPACE |
204 | 212 |
205 #endif // COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_AFFILIATION_UTILS_H_ | 213 #endif // COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_AFFILIATION_UTILS_H_ |
OLD | NEW |