Upstream version 6.34.113.0
[platform/framework/web/crosswalk.git] / src / xwalk / runtime / common / xwalk_paths.h
1 // Copyright (c) 2013 Intel Corporation. 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 XWALK_RUNTIME_COMMON_XWALK_PATHS_H_
6 #define XWALK_RUNTIME_COMMON_XWALK_PATHS_H_
7
8 #include "build/build_config.h"
9 #include "content/public/browser/notification_types.h"
10
11 namespace xwalk {
12
13 enum {
14   PATH_START = 1000,
15   DIR_DATA_PATH = PATH_START,  // Directory where the cache and local storage
16                                // data resides.
17   DIR_TEST_DATA,               // Directory where unit test data resides.
18   DIR_WGT_STORAGE_PATH,        // Directory where widget storage data resides.
19   PATH_END
20 };
21
22 void RegisterPathProvider();
23
24 }  // namespace xwalk
25
26 #endif  // XWALK_RUNTIME_COMMON_XWALK_PATHS_H_