| OLD | NEW |
| 1 /* | 1 /* |
| 2 Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) | 2 Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) |
| 3 | 3 |
| 4 This library is free software; you can redistribute it and/or | 4 This library is free software; you can redistribute it and/or |
| 5 modify it under the terms of the GNU Library General Public | 5 modify it under the terms of the GNU Library General Public |
| 6 License as published by the Free Software Foundation; either | 6 License as published by the Free Software Foundation; either |
| 7 version 2 of the License, or (at your option) any later version. | 7 version 2 of the License, or (at your option) any later version. |
| 8 | 8 |
| 9 This library is distributed in the hope that it will be useful, | 9 This library is distributed in the hope that it will be useful, |
| 10 but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 but WITHOUT ANY WARRANTY; without even the implied warranty of |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 #include "wtf/Forward.h" | 31 #include "wtf/Forward.h" |
| 32 #include "wtf/PassRefPtr.h" | 32 #include "wtf/PassRefPtr.h" |
| 33 #include "wtf/RefCounted.h" | 33 #include "wtf/RefCounted.h" |
| 34 #include "wtf/RefPtr.h" | 34 #include "wtf/RefPtr.h" |
| 35 | 35 |
| 36 namespace blink { | 36 namespace blink { |
| 37 | 37 |
| 38 class DOMMimeTypeArray; | 38 class DOMMimeTypeArray; |
| 39 class DOMPluginArray; | 39 class DOMPluginArray; |
| 40 class LocalFrame; | 40 class LocalFrame; |
| 41 class PluginData; | |
| 42 | 41 |
| 43 typedef int ExceptionCode; | 42 typedef int ExceptionCode; |
| 44 | 43 |
| 45 class Navigator FINAL | 44 class Navigator FINAL |
| 46 : public RefCountedWillBeGarbageCollectedFinalized<Navigator> | 45 : public RefCountedWillBeGarbageCollectedFinalized<Navigator> |
| 47 , public NavigatorCPU | 46 , public NavigatorCPU |
| 48 , public NavigatorID | 47 , public NavigatorID |
| 49 , public NavigatorLanguage | 48 , public NavigatorLanguage |
| 50 , public NavigatorOnLine | 49 , public NavigatorOnLine |
| 51 , public ScriptWrappable | 50 , public ScriptWrappable |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 private: | 82 private: |
| 84 explicit Navigator(LocalFrame*); | 83 explicit Navigator(LocalFrame*); |
| 85 | 84 |
| 86 mutable RefPtrWillBeMember<DOMPluginArray> m_plugins; | 85 mutable RefPtrWillBeMember<DOMPluginArray> m_plugins; |
| 87 mutable RefPtrWillBeMember<DOMMimeTypeArray> m_mimeTypes; | 86 mutable RefPtrWillBeMember<DOMMimeTypeArray> m_mimeTypes; |
| 88 }; | 87 }; |
| 89 | 88 |
| 90 } // namespace blink | 89 } // namespace blink |
| 91 | 90 |
| 92 #endif // Navigator_h | 91 #endif // Navigator_h |
| OLD | NEW |