diff options
author | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-22 23:45:49 +0000 |
---|---|---|
committer | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-22 23:45:49 +0000 |
commit | 24fc6e459db3a93e3b4bbd4bfb18d5678e3f2ed9 (patch) | |
tree | f1ec3fb4f8c7e97841476c29a760a9e2bcd740ec /webkit/port/platform/chromium/TemporaryLinkStubs.cpp | |
parent | 2dd9425803d1acce9d902effa86bc2e791da1f4f (diff) | |
download | chromium_src-24fc6e459db3a93e3b4bbd4bfb18d5678e3f2ed9.zip chromium_src-24fc6e459db3a93e3b4bbd4bfb18d5678e3f2ed9.tar.gz chromium_src-24fc6e459db3a93e3b4bbd4bfb18d5678e3f2ed9.tar.bz2 |
Remove DerivedSources.cpp from KJSBindings.vcproj, and replace it with all the individual Derived Sources. This lets me remove the Database, Storage and SQL-related files, which in turn trims down the number of additions to TemporaryLinkStubs.cpp.
I also added a couple missing .h files, not that it makes a real difference. (I believe these are also missing upstream.)
Review URL: http://codereview.chromium.org/7896
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3796 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/port/platform/chromium/TemporaryLinkStubs.cpp')
-rw-r--r-- | webkit/port/platform/chromium/TemporaryLinkStubs.cpp | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/webkit/port/platform/chromium/TemporaryLinkStubs.cpp b/webkit/port/platform/chromium/TemporaryLinkStubs.cpp index 9418a7e..022eb81 100644 --- a/webkit/port/platform/chromium/TemporaryLinkStubs.cpp +++ b/webkit/port/platform/chromium/TemporaryLinkStubs.cpp @@ -56,65 +56,10 @@ void scheduleDispatchFunctionsOnMainThread() { notImplemented(); } } #if USE(JSC) -#include "c_instance.h" -#include "Database.h" -#include "DatabaseAuthorizer.h" -#include "Document.h" -#include "DOMWindow.h" #include "EventLoop.h" -#include "JSStorageCustom.h" #include "PluginView.h" -#include "SQLResultSet.h" -#include "SQLTransaction.h" -#include "SQLValue.h" -#include "Storage.h" -#include "StorageEvent.h" -#include "TimeRanges.h" - -using namespace KJS; - -Database::~Database() { notImplemented(); } -String Database::version() const { notImplemented(); return String(); } -void Database::transaction(PassRefPtr<SQLTransactionCallback> callback, PassRefPtr<SQLTransactionErrorCallback> errorCallback, PassRefPtr<VoidCallback> successCallback) { notImplemented(); } -void Database::changeVersion(const String& oldVersion, const String& newVersion, PassRefPtr<SQLTransactionCallback> callback, PassRefPtr<SQLTransactionErrorCallback> errorCallback, PassRefPtr<VoidCallback> successCallback) { notImplemented(); } void EventLoop::cycle() { notImplemented(); } -bool JSStorage::canGetItemsForName(ExecState*, Storage* impl, const Identifier& propertyName) { notImplemented(); return false; } -JSValue* JSStorage::nameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot) { notImplemented(); return 0; } -bool JSStorage::deleteProperty(ExecState* exec, const Identifier& propertyName) { notImplemented(); return false; } -bool JSStorage::customPut(ExecState* exec, const Identifier& propertyName, JSValue* value, PutPropertySlot&) { notImplemented(); return false; } -bool JSStorage::customGetPropertyNames(ExecState* exec, PropertyNameArray& propertyNames) { notImplemented(); return false; } - void PluginView::setJavaScriptPaused(bool) { notImplemented(); } -PassRefPtr<KJS::Bindings::Instance> PluginView::bindingInstance() { notImplemented(); return PassRefPtr<KJS::Bindings::Instance>(0); } - -SQLiteDatabase::~SQLiteDatabase() { notImplemented(); } -SQLiteTransaction::~SQLiteTransaction() { notImplemented(); } - -int64_t SQLResultSet::insertId(ExceptionCode&) const { notImplemented(); return 0; } -int SQLResultSet::rowsAffected() const { notImplemented(); return 0; } -SQLResultSetRowList* SQLResultSet::rows() const { notImplemented(); return 0; } - -unsigned int SQLResultSetRowList::length() const { notImplemented(); return 0; } - -SQLTransaction::~SQLTransaction() { notImplemented(); } -void SQLTransaction::executeSQL(const String&, const Vector<SQLValue>&, PassRefPtr<SQLStatementCallback>, PassRefPtr<SQLStatementErrorCallback>, ExceptionCode&) { notImplemented(); } - -SQLValue::SQLValue(class WebCore::SQLValue const &) {} -String SQLValue::string() const { return String(); } -double SQLValue::number() const { return 0.0; } - -unsigned Storage::length() const { notImplemented(); return 0; } -String Storage::key(unsigned index, ExceptionCode&) const { notImplemented(); return String(); } -String Storage::getItem(const String&) const { notImplemented(); return String(); } -void Storage::setItem(const String& key, const String& value, ExceptionCode&) { notImplemented(); } -void Storage::removeItem(const String&) { notImplemented(); } -void Storage::clear() { notImplemented(); } - -void StorageEvent::initStorageEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& key, const String& oldValue, const String& newValue, const String& uri, PassRefPtr<DOMWindow> source) { notImplemented(); } - -float TimeRanges::start(unsigned int, int&) const { notImplemented(); return 0.0; } -float TimeRanges::end(unsigned int, int&) const { notImplemented(); return 0.0; } - #endif |