roll libyuv from 1483 to 1487
[chromium-blink-merge.git] / ios / chrome / browser / chrome_paths.h
blob1084da487ea5f0fbf151fa2e535003599d327a79
1 // Copyright 2015 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.
5 #ifndef IOS_CHROME_BROWSER_CHROME_PATHS_H_
6 #define IOS_CHROME_BROWSER_CHROME_PATHS_H_
8 // This file declares path keys for the Chrome on iOS application. These can be
9 // used with the PathService to access various special directories and files.
11 namespace ios {
13 enum {
14 PATH_START = 2000,
16 DIR_USER_DATA = PATH_START, // Directory where user data can be written.
17 DIR_CRASH_DUMPS, // Directory where crash dumps are written.
18 DIR_TEST_DATA, // Directory where unit test data resides.
20 PATH_END
23 // Call once to register the provider for the path keys defined above.
24 void RegisterPathProvider();
26 } // namespace
28 #endif // IOS_CHROME_BROWSER_CHROME_PATHS_H_