Source code formating unification
[platform/framework/web/wrt.git] / src / view / webkit / bundles / bundle_uri_handling.h
1 /*
2  * Copyright (c) 2012 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *    Licensed under the Apache License, Version 2.0 (the "License");
5  *    you may not use this file except in compliance with the License.
6  *    You may obtain a copy of the License at
7  *
8  *        http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *    Unless required by applicable law or agreed to in writing, software
11  *    distributed under the License is distributed on an "AS IS" BASIS,
12  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *    See the License for the specific language governing permissions and
14  *    limitations under the License.
15  */
16 /**
17  * @file    bundle_uri_handling.h
18  * @author  Marcin Kaminski (marcin.ka@samsung.com)
19  * @version 1.0
20  */
21 #ifndef BUNDLE_URI_HANDLING_H_
22 #define BUNDLE_URI_HANDLING_H_
23
24 #include <dpl/string.h>
25 #include <dpl/optional_typedefs.h>
26 // WKBundleRef type
27 #include <WKBundle.h>
28
29 namespace BundleURIHandling {
30 DPL::Optional<DPL::String> processURI(const DPL::String& inputURI,
31                                       bool is_xhr,
32                                       const DPL::String& tizenId,
33                                       WKBundleRef bundle);
34 DPL::OptionalString localizeURI(const DPL::String& inputURI,
35                                 const DPL::String& tizenId);
36 }
37
38 #endif /* BUNDLE_URI_HANDLING_H_ */