Git init
[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 Geolocation;
35 class NavigatorUserMediaErrorCallback;
36 class NavigatorUserMediaSuccessCallback;
37 class PluginData;
38
39 typedef int ExceptionCode;
40
41 class Navigator : public NavigatorBase, public RefCounted<Navigator> {
42 public:
43     static PassRefPtr<Navigator> create(Frame* frame) { return adoptRef(new Navigator(frame)); }
44     virtual ~Navigator();
45
46     void resetGeolocation();
47     void disconnectFrame();
48     Frame* frame() const { return m_frame; }
49
50     String appVersion() const;
51     String language() const;
52     DOMPluginArray* plugins() const;
53     DOMMimeTypeArray* mimeTypes() const;
54     bool cookieEnabled() const;
55     bool javaEnabled() const;
56
57     virtual String userAgent() const;
58
59     Geolocation* geolocation() const;
60
61     // Relinquishes the storage lock, if one exists.
62     void getStorageUpdates();
63
64 #if ENABLE(REGISTER_PROTOCOL_HANDLER)
65     void registerProtocolHandler(const String& scheme, const String& url, const String& title, ExceptionCode&);
66 #endif
67
68 #if ENABLE(MEDIA_STREAM)
69     virtual void webkitGetUserMedia(const String& options, PassRefPtr<NavigatorUserMediaSuccessCallback>, PassRefPtr<NavigatorUserMediaErrorCallback>, ExceptionCode&);
70 #endif
71
72 private:
73     Navigator(Frame*);
74     Frame* m_frame;
75     mutable RefPtr<DOMPluginArray> m_plugins;
76     mutable RefPtr<DOMMimeTypeArray> m_mimeTypes;
77     mutable RefPtr<Geolocation> m_geolocation;
78 };
79
80 }
81
82 #endif