Fix emulator build error
[platform/framework/web/chromium-efl.git] / components / login / base_screen_handler_utils.h
1 // Copyright 2013 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef COMPONENTS_LOGIN_BASE_SCREEN_HANDLER_UTILS_H_
6 #define COMPONENTS_LOGIN_BASE_SCREEN_HANDLER_UTILS_H_
7
8 #include <string>
9 #include <vector>
10
11 #include "base/values.h"
12 #include "components/login/login_export.h"
13
14 namespace login {
15
16 using StringList = std::vector<std::string>;
17
18 StringList LOGIN_EXPORT ConvertToStringList(const base::Value::List& list);
19
20 }  // namespace login
21
22 #endif  // COMPONENTS_LOGIN_BASE_SCREEN_HANDLER_UTILS_H_