tizen beta release
[framework/web/webkit-efl.git] / Source / WebCore / page / Navigator.h
1 /*
2     Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
3
4     This library is free software; you can redistribute it and/or
5     modify it under the terms of the GNU Library General Public
6     License as published by the Free Software Foundation; either
7     version 2 of the License, or (at your option) any later version.
8
9     This library is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12     Library General Public License for more details.
13
14     You should have received a copy of the GNU Library General Public License
15     along with this library; see the file COPYING.LIB.  If not, write to
16     the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17     Boston, MA 02110-1301, USA.
18 */
19
20 #ifndef Navigator_h
21 #define Navigator_h
22
23 #include "NavigatorBase.h"
24 #include <wtf/Forward.h>
25 #include <wtf/PassRefPtr.h>
26 #include <wtf/RefCounted.h>
27 #include <wtf/RefPtr.h>
28
29 namespace WebCore {
30
31 class DOMMimeTypeArray;
32 class DOMPluginArray;
33 class Frame;
34 class GamepadList;
35 class Geolocation;
36 class PointerLock;
37 class NavigatorUserMediaErrorCallback;
38 class NavigatorUserMediaSuccessCallback;
39 class PluginData;
40
41 typedef int ExceptionCode;
42
43 class Navigator : public NavigatorBase, public RefCounted<Navigator> {
44 public:
45     static PassRefPtr<Navigator> create(Frame* frame) { return adoptRef(new Navigator(frame)); }
46     virtual ~Navigator();
47
48     void resetGeolocation();
49     void disconnectFrame();
50     Frame* frame() const { return m_frame; }
51
52     String appVersion() const;
53     String language() const;
54     DOMPluginArray* plugins() const;
55     DOMMimeTypeArray* mimeTypes() const;
56     bool cookieEnabled() const;
57     bool javaEnabled() const;
58
59     virtual String userAgent() const;
60
61     Geolocation* geolocation() const;
62
63 #if ENABLE(POINTER_LOCK)
64     PointerLock* webkitPointer() const;
65 #endif
66
67     // Relinquishes the storage lock, if one exists.
68     void getStorageUpdates();
69
70 #if ENABLE(REGISTER_PROTOCOL_HANDLER)
71     void registerProtocolHandler(const String& scheme, const String& url, const String& title, ExceptionCode&);
72 #endif
73
74 #if ENABLE(MEDIA_STREAM)
75     virtual void webkitGetUserMedia(const String& options, PassRefPtr<NavigatorUserMediaSuccessCallback>, PassRefPtr<NavigatorUserMediaErrorCallback>, ExceptionCode&);
76 #endif
77
78 #if ENABLE(GAMEPAD)
79     GamepadList* webkitGamepads();
80 #endif
81
82 private:
83     Navigator(Frame*);
84     Frame* m_frame;
85     mutable RefPtr<DOMPluginArray> m_plugins;
86     mutable RefPtr<DOMMimeTypeArray> m_mimeTypes;
87     mutable RefPtr<Geolocation> m_geolocation;
88 #if ENABLE(GAMEPAD)
89     mutable RefPtr<GamepadList> m_gamepads;
90 #endif
91 #if ENABLE(POINTER_LOCK)
92     mutable RefPtr<PointerLock> m_pointer;
93 #endif
94 };
95
96 }
97
98 #endif