| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 #include "chrome/browser/policy/configuration_policy_provider_win.h" | 5 #include "chrome/browser/policy/configuration_policy_provider_win.h" |
| 6 | 6 |
| 7 #include <userenv.h> | 7 #include <userenv.h> |
| 8 | 8 |
| 9 #include <algorithm> | 9 #include <algorithm> |
| 10 | 10 |
| (...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 279 store->Apply(current->policy_type, | 279 store->Apply(current->policy_type, |
| 280 Value::CreateIntegerValue(int_value)); | 280 Value::CreateIntegerValue(int_value)); |
| 281 } | 281 } |
| 282 break; | 282 break; |
| 283 } | 283 } |
| 284 default: | 284 default: |
| 285 NOTREACHED(); | 285 NOTREACHED(); |
| 286 return false; | 286 return false; |
| 287 } | 287 } |
| 288 } | 288 } |
| 289 store->Completed(); |
| 289 | 290 |
| 290 return true; | 291 return true; |
| 291 } | 292 } |
| 292 | 293 |
| 293 } // namespace policy | 294 } // namespace policy |
| OLD | NEW |