2 // Open Service Platform
3 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
5 // Licensed under the Apache License, Version 2.0 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
9 // http://www.apache.org/licenses/LICENSE-2.0
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
19 * @file FWebCtrl_WebImpl.h
20 * @brief The file contains the declaration of _WebImpl class.
22 * The file contains the declaration of _WebImpl class.
24 #ifndef _FWEB_CTRL_INTERNAL_WEB_PRESENTER_H_
25 #define _FWEB_CTRL_INTERNAL_WEB_PRESENTER_H_
28 #include <FBaseString.h>
30 namespace Tizen { namespace Web { namespace Controls
34 : public Tizen::Base::Object
40 virtual ~_WebPresenter(void);
44 void InitAsyncProcess(void);
46 void WaitAsyncProcess(bool& result);
47 void WaitAsyncProcess(Tizen::Base::String& result);
48 void WaitAsyncProcess(int& result);
49 void WaitAsyncProcess(long& result);
50 Eina_List* WaitAsyncProcess(void);
52 void EndAsyncProcess(bool result);
53 void EndAsyncProcess(const Tizen::Base::String& result);
54 void EndAsyncProcess(int result);
55 void EndAsyncProcess(long result);
56 void EndAsyncProcess(const Eina_List* result);
59 _WebPresenter(const _WebPresenter& rhs);
61 _WebPresenter& operator =(const _WebPresenter& rhs);
63 void ProcessEvent(void);
69 Tizen::Base::String __string;
75 }}} // Tizen::Web::Controls
76 #endif // _FWEB_CTRL_INTERNAL_WEB_PRESENTER_H_