base_screen_handler_utils.h 607 B

12345678910111213141516171819202122
  1. // Copyright (c) 2013 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #ifndef COMPONENTS_LOGIN_BASE_SCREEN_HANDLER_UTILS_H_
  5. #define COMPONENTS_LOGIN_BASE_SCREEN_HANDLER_UTILS_H_
  6. #include <string>
  7. #include <vector>
  8. #include "base/values.h"
  9. #include "components/login/login_export.h"
  10. namespace login {
  11. using StringList = std::vector<std::string>;
  12. StringList LOGIN_EXPORT ConvertToStringList(const base::Value::List& list);
  13. } // namespace login
  14. #endif // COMPONENTS_LOGIN_BASE_SCREEN_HANDLER_UTILS_H_