| 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 #include "components/login/base_screen_handler_utils.h" | 5 #include "components/login/base_screen_handler_utils.h" |
| 6 | 6 |
| 7 namespace login { | 7 namespace login { |
| 8 | 8 |
| 9 namespace { | 9 namespace { |
| 10 | 10 |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 } | 69 } |
| 70 | 70 |
| 71 base::StringValue MakeValue(const std::string& v) { | 71 base::StringValue MakeValue(const std::string& v) { |
| 72 return base::StringValue(v); | 72 return base::StringValue(v); |
| 73 } | 73 } |
| 74 | 74 |
| 75 base::StringValue MakeValue(const base::string16& v) { | 75 base::StringValue MakeValue(const base::string16& v) { |
| 76 return base::StringValue(v); | 76 return base::StringValue(v); |
| 77 } | 77 } |
| 78 | 78 |
| 79 void CallbackWrapper0(base::Callback<void()> callback, | |
| 80 const base::ListValue* args) { | |
| 81 DCHECK(args); | |
| 82 DCHECK(args->empty()); | |
| 83 callback.Run(); | |
| 84 } | |
| 85 | |
| 86 } // namespace login | 79 } // namespace login |
| OLD | NEW |