diff options
author | Andrei Popescu <andreip@google.com> | 2009-08-19 14:09:30 +0100 |
---|---|---|
committer | Andrei Popescu <andreip@google.com> | 2009-08-19 14:09:30 +0100 |
commit | 058ccc7ba0a4d59b9f6e92808332aa9895425fc7 (patch) | |
tree | 276aad5a2bbc2fd7d65d21bfca42c9de88b3dd20 /WebCore/page/Navigator.cpp | |
parent | 2796dd1bf3b4b01e7e1d96ea91bd3a212f647579 (diff) | |
download | external_webkit-058ccc7ba0a4d59b9f6e92808332aa9895425fc7.zip external_webkit-058ccc7ba0a4d59b9f6e92808332aa9895425fc7.tar.gz external_webkit-058ccc7ba0a4d59b9f6e92808332aa9895425fc7.tar.bz2 |
Revert "Merge WebKit r47420"
This reverts commit d227fc870c7a697500a3c900c31baf05fb9a8524.
Diffstat (limited to 'WebCore/page/Navigator.cpp')
-rw-r--r-- | WebCore/page/Navigator.cpp | 20 |
1 files changed, 1 insertions, 19 deletions
diff --git a/WebCore/page/Navigator.cpp b/WebCore/page/Navigator.cpp index 4922860..3603b86 100644 --- a/WebCore/page/Navigator.cpp +++ b/WebCore/page/Navigator.cpp @@ -31,13 +31,11 @@ #include "Language.h" #include "MimeTypeArray.h" #include "Page.h" -#include "PageGroup.h" #include "PlatformString.h" #include "PluginArray.h" #include "PluginData.h" #include "ScriptController.h" #include "Settings.h" -#include "StorageNamespace.h" namespace WebCore { @@ -152,21 +150,5 @@ Geolocation* Navigator::geolocation() const m_geolocation = Geolocation::create(m_frame); return m_geolocation.get(); } - -#if ENABLE(DOM_STORAGE) -void Navigator::getStorageUpdates() -{ - if (!m_frame) - return; - - Page* page = m_frame->page(); - if (!page) - return; - - StorageNamespace* localStorage = page->group().localStorage(); - if (localStorage) - localStorage->unlock(); -} -#endif - + } // namespace WebCore |