| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 <pwd.h> | 5 #include <pwd.h> |
| 6 #include <stddef.h> |
| 6 #include <sys/types.h> | 7 #include <sys/types.h> |
| 7 #include <unistd.h> | 8 #include <unistd.h> |
| 8 | 9 |
| 9 #include "chrome/browser/policy/policy_path_parser.h" | 10 #include "chrome/browser/policy/policy_path_parser.h" |
| 10 | 11 |
| 11 #include "base/logging.h" | 12 #include "base/logging.h" |
| 12 | 13 |
| 13 namespace policy { | 14 namespace policy { |
| 14 | 15 |
| 15 namespace path_parser { | 16 namespace path_parser { |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 | 56 |
| 56 void CheckUserDataDirPolicy(base::FilePath* user_data_dir) { | 57 void CheckUserDataDirPolicy(base::FilePath* user_data_dir) { |
| 57 // This function is not implemented in Linux because we don't support the | 58 // This function is not implemented in Linux because we don't support the |
| 58 // policy on this platform. | 59 // policy on this platform. |
| 59 NOTREACHED(); | 60 NOTREACHED(); |
| 60 } | 61 } |
| 61 | 62 |
| 62 } // namespace path_parser | 63 } // namespace path_parser |
| 63 | 64 |
| 64 } // namespace policy | 65 } // namespace policy |
| OLD | NEW |