[Tizen][WebRTC] Appsink implementation with fimcconvert
[platform/framework/web/chromium-efl.git] / tizen_src / impl / paths_efl.h
1 // Copyright 2014 Samsung Electronics. 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 _PATHS_EFL_H_
6 #define _PATHS_EFL_H_
7
8 #include "base/base_paths.h"
9
10 namespace PathsEfl {
11 enum {
12   // The value here is taken from chromium/src/chrome/common/chrome_paths.h.
13   PATH_START = 1000,
14   EDJE_RESOURCE_DIR,
15   WEB_DATABASE_DIR,
16   DIR_USER_DATA,
17   DIR_DATA_PATH,
18   DIR_DOWNLOADS,
19   DIR_DOWNLOAD_IMAGE,
20   DIR_LOCALE,
21   PATH_END
22 };
23
24 // Call once per each process type to register the provider for the
25 // path keys defined above
26 void Register();
27 }
28
29 #endif // _PATHS_EFL_H_