OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2012 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 | |
5 #ifndef IOS_CHROME_BROWSER_UI_FILE_LOCATIONS_H_ | |
6 #define IOS_CHROME_BROWSER_UI_FILE_LOCATIONS_H_ | |
7 | |
8 #include <string> | |
9 | |
10 namespace file_locations { | |
sdefresne
2015/04/02 17:20:28
style: why the namespace?
| |
11 | |
12 // Returns file name for Terms of Service text localized for the application | |
13 // locale. | |
14 std::string TermsOfService(); | |
15 | |
16 } // namespace file_locations | |
17 | |
18 #endif // IOS_CHROME_BROWSER_UI_FILE_LOCATIONS_H_ | |
OLD | NEW |