| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2000 Harri Porten (porten@kde.org) | 2 * Copyright (C) 2000 Harri Porten (porten@kde.org) |
| 3 * Copyright (c) 2000 Daniel Molkentin (molkentin@kde.org) | 3 * Copyright (c) 2000 Daniel Molkentin (molkentin@kde.org) |
| 4 * Copyright (c) 2000 Stefan Schimanski (schimmi@kde.org) | 4 * Copyright (c) 2000 Stefan Schimanski (schimmi@kde.org) |
| 5 * Copyright (C) 2003, 2004, 2005, 2006 Apple Computer, Inc. | 5 * Copyright (C) 2003, 2004, 2005, 2006 Apple Computer, Inc. |
| 6 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) | 6 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Lesser General Public | 9 * modify it under the terms of the GNU Lesser General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 | 22 |
| 23 #include "config.h" | 23 #include "config.h" |
| 24 #include "core/page/Navigator.h" | 24 #include "core/page/Navigator.h" |
| 25 | 25 |
| 26 #include <wtf/HashSet.h> | 26 #include <wtf/HashSet.h> |
| 27 #include <wtf/StdLibExtras.h> | 27 #include <wtf/StdLibExtras.h> |
| 28 #include "bindings/v8/ScriptController.h" | 28 #include "bindings/v8/ScriptController.h" |
| 29 #include "core/dom/Document.h" | 29 #include "core/dom/Document.h" |
| 30 #include "core/loader/CookieJar.h" | 30 #include "core/loader/CookieJar.h" |
| 31 #include "core/loader/FrameLoader.h" | 31 #include "core/loader/FrameLoader.h" |
| 32 #include "core/loader/FrameLoaderClient.h" | |
| 33 #include "core/page/Frame.h" | 32 #include "core/page/Frame.h" |
| 34 #include "core/page/Page.h" | 33 #include "core/page/Page.h" |
| 35 #include "core/page/Settings.h" | 34 #include "core/page/Settings.h" |
| 36 #include "core/platform/Language.h" | 35 #include "core/platform/Language.h" |
| 37 #include "core/plugins/DOMMimeTypeArray.h" | 36 #include "core/plugins/DOMMimeTypeArray.h" |
| 38 #include "core/plugins/DOMPluginArray.h" | 37 #include "core/plugins/DOMPluginArray.h" |
| 39 #include "core/plugins/PluginData.h" | |
| 40 #include "core/storage/StorageNamespace.h" | |
| 41 #include "modules/geolocation/Geolocation.h" | |
| 42 #include "weborigin/SecurityOrigin.h" | |
| 43 | 38 |
| 44 namespace WebCore { | 39 namespace WebCore { |
| 45 | 40 |
| 46 Navigator::Navigator(Frame* frame) | 41 Navigator::Navigator(Frame* frame) |
| 47 : DOMWindowProperty(frame) | 42 : DOMWindowProperty(frame) |
| 48 { | 43 { |
| 49 ScriptWrappable::init(this); | 44 ScriptWrappable::init(this); |
| 50 } | 45 } |
| 51 | 46 |
| 52 Navigator::~Navigator() | 47 Navigator::~Navigator() |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 | 128 |
| 134 return true; | 129 return true; |
| 135 } | 130 } |
| 136 | 131 |
| 137 void Navigator::getStorageUpdates() | 132 void Navigator::getStorageUpdates() |
| 138 { | 133 { |
| 139 // FIXME: Remove this method or rename to yieldForStorageUpdates. | 134 // FIXME: Remove this method or rename to yieldForStorageUpdates. |
| 140 } | 135 } |
| 141 | 136 |
| 142 } // namespace WebCore | 137 } // namespace WebCore |
| OLD | NEW |