blob: ab58c49b8096c69a223d1b708d08cfc51d84c9c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_UI_WEBUI_HELP_HELP_UTILS_CHROMEOS_H_
#define CHROME_BROWSER_UI_WEBUI_HELP_HELP_UTILS_CHROMEOS_H_
#include <string>
#include "base/strings/string16.h"
namespace help_utils_chromeos {
// Returns true if update over cellular networks is enabled.
bool IsUpdateOverCellularAllowed();
// Returns localized name for the connection |type|.
base::string16 GetConnectionTypeAsUTF16(const std::string& type);
} // namespace help_utils_chromeos
#endif // CHROME_BROWSER_UI_WEBUI_HELP_HELP_UTILS_CHROMEOS_H_
|