Chromium Code Reviews| Index: chrome/browser/ui/webui/options2/chromeos/timezone_options_util.h |
| diff --git a/chrome/browser/ui/webui/options2/chromeos/timezone_options_util.h b/chrome/browser/ui/webui/options2/chromeos/timezone_options_util.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..1363fb9170904112332b6315ca17a6bea1912a98 |
| --- /dev/null |
| +++ b/chrome/browser/ui/webui/options2/chromeos/timezone_options_util.h |
| @@ -0,0 +1,19 @@ |
| +// Copyright (c) 2012 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_OPTIONS2_CHROMEOS_TIMEZONE_OPTIONS_UTIL_H_ |
| +#define CHROME_BROWSER_UI_WEBUI_OPTIONS2_CHROMEOS_TIMEZONE_OPTIONS_UTIL_H_ |
| + |
| +namespace base { |
| +class ListValue; |
| +} |
| + |
| +namespace options2 { |
| + |
| +// Creates a list of pairs of each timezone's ID and name. |
| +base::ListValue* GetTimezoneList(); |
|
Joao da Silva
2012/07/16 11:44:54
Suggestion: make the return type scoped_ptr<base::
pneubeck2
2012/07/16 12:21:45
Done.
|
| + |
| +} // namespace options2 |
| + |
| +#endif // CHROME_BROWSER_UI_WEBUI_OPTIONS2_CHROMEOS_TIMEZONE_OPTIONS_UTIL_H_ |