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/configuration_policy_pref_store.h" | 5 #include "chrome/browser/configuration_policy_pref_store.h" |
6 | 6 |
7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 #include "base/logging.h" | 8 #include "base/logging.h" |
9 #include "base/path_service.h" | 9 #include "base/path_service.h" |
10 #include "base/string16.h" | 10 #include "base/string16.h" |
(...skipping 344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
355 return; | 355 return; |
356 | 356 |
357 if (ApplyPolicyFromMap(policy, value, simple_policy_map_, | 357 if (ApplyPolicyFromMap(policy, value, simple_policy_map_, |
358 arraysize(simple_policy_map_))) | 358 arraysize(simple_policy_map_))) |
359 return; | 359 return; |
360 | 360 |
361 // Other policy implementations go here. | 361 // Other policy implementations go here. |
362 NOTIMPLEMENTED(); | 362 NOTIMPLEMENTED(); |
363 delete value; | 363 delete value; |
364 } | 364 } |
OLD | NEW |