Title: [99523] trunk/Source/WebCore
- Revision
- 99523
- Author
- [email protected]
- Date
- 2011-11-07 22:40:26 -0800 (Mon, 07 Nov 2011)
Log Message
Add CredentialStorage.cpp to WebCore/CMakeLists.txt
https://bugs.webkit.org/show_bug.cgi?id=71748
Reviewed by Martin Robinson.
Adds CredentialStorage.cpp to WebCore/CMakeLists.txt since its provides a
base implementation of this feature.
Also adds a stub implementation of CredentialStorage to the WinCE port.
* CMakeLists.txt: Added source file CredentialStorage.cpp.
* CMakeListsEfl.txt: Added source file CredentialStorageCurl.cpp when building
with the Curl networking backend.
* CMakeListsWinCE.txt: Added source file CredentialStorageWin.cpp.
* platform/network/win/CredentialStorageWin.cpp: Added.
(WebCore::Credential::getFromPersistentStorage): Stub implementation.
Modified Paths
Added Paths
Diff
Modified: trunk/Source/WebCore/CMakeLists.txt (99522 => 99523)
--- trunk/Source/WebCore/CMakeLists.txt 2011-11-08 06:27:20 UTC (rev 99522)
+++ trunk/Source/WebCore/CMakeLists.txt 2011-11-08 06:40:26 UTC (rev 99523)
@@ -1154,6 +1154,7 @@
platform/network/BlobRegistryImpl.cpp
platform/network/BlobResourceHandle.cpp
platform/network/Credential.cpp
+ platform/network/CredentialStorage.cpp
platform/network/ContentTypeParser.cpp
platform/network/DataURL.cpp
platform/network/FormDataBuilder.cpp
Modified: trunk/Source/WebCore/CMakeListsEfl.txt (99522 => 99523)
--- trunk/Source/WebCore/CMakeListsEfl.txt 2011-11-08 06:27:20 UTC (rev 99522)
+++ trunk/Source/WebCore/CMakeListsEfl.txt 2011-11-08 06:40:26 UTC (rev 99523)
@@ -164,6 +164,7 @@
)
LIST(APPEND WebCore_SOURCES
platform/network/curl/CookieJarCurl.cpp
+ platform/network/curl/CredentialStorageCurl.cpp
platform/network/curl/DNSCurl.cpp
platform/network/curl/FormDataStreamCurl.cpp
platform/network/curl/ResourceHandleCurl.cpp
Modified: trunk/Source/WebCore/CMakeListsWinCE.txt (99522 => 99523)
--- trunk/Source/WebCore/CMakeListsWinCE.txt 2011-11-08 06:27:20 UTC (rev 99522)
+++ trunk/Source/WebCore/CMakeListsWinCE.txt 2011-11-08 06:40:26 UTC (rev 99523)
@@ -80,6 +80,7 @@
platform/wince/MIMETypeRegistryWince.cpp
platform/wince/SharedTimerWince.cpp
+ platform/network/win/CredentialStorageWin.cpp
platform/network/win/CookieJarWin.cpp
platform/network/win/CookieStorageWin.cpp
platform/network/win/NetworkStateNotifierWin.cpp
Modified: trunk/Source/WebCore/ChangeLog (99522 => 99523)
--- trunk/Source/WebCore/ChangeLog 2011-11-08 06:27:20 UTC (rev 99522)
+++ trunk/Source/WebCore/ChangeLog 2011-11-08 06:40:26 UTC (rev 99523)
@@ -1,3 +1,22 @@
+2011-11-07 Daniel Bates <[email protected]>
+
+ Add CredentialStorage.cpp to WebCore/CMakeLists.txt
+ https://bugs.webkit.org/show_bug.cgi?id=71748
+
+ Reviewed by Martin Robinson.
+
+ Adds CredentialStorage.cpp to WebCore/CMakeLists.txt since its provides a
+ base implementation of this feature.
+
+ Also adds a stub implementation of CredentialStorage to the WinCE port.
+
+ * CMakeLists.txt: Added source file CredentialStorage.cpp.
+ * CMakeListsEfl.txt: Added source file CredentialStorageCurl.cpp when building
+ with the Curl networking backend.
+ * CMakeListsWinCE.txt: Added source file CredentialStorageWin.cpp.
+ * platform/network/win/CredentialStorageWin.cpp: Added.
+ (WebCore::Credential::getFromPersistentStorage): Stub implementation.
+
2011-11-07 Kentaro Hara <[email protected]>
Remove [CustomGetter] IDL for window.Image of V8
Added: trunk/Source/WebCore/platform/network/win/CredentialStorageWin.cpp (0 => 99523)
--- trunk/Source/WebCore/platform/network/win/CredentialStorageWin.cpp (rev 0)
+++ trunk/Source/WebCore/platform/network/win/CredentialStorageWin.cpp 2011-11-08 06:40:26 UTC (rev 99523)
@@ -0,0 +1,33 @@
+/*
+ * Copyright (C) 2011 Research In Motion Limited. All rights reserved.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#include "config.h"
+#include "CredentialStorage.h"
+
+#include "Credential.h"
+#include "NotImplemented.h"
+
+namespace WebCore {
+
+Credential CredentialStorage::getFromPersistentStorage(const ProtectionSpace&)
+{
+ notImplemented();
+ return Credential();
+}
+
+} // namespace WebCore
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes