diff options
Diffstat (limited to 'WebCore/storage/DatabaseAuthorizer.h')
-rw-r--r-- | WebCore/storage/DatabaseAuthorizer.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/WebCore/storage/DatabaseAuthorizer.h b/WebCore/storage/DatabaseAuthorizer.h index d02d810..685bb97 100644 --- a/WebCore/storage/DatabaseAuthorizer.h +++ b/WebCore/storage/DatabaseAuthorizer.h @@ -59,10 +59,10 @@ public: int dropTrigger(const String& triggerName, const String& tableName); int dropTempTrigger(const String& triggerName, const String& tableName); - int createView(const String& viewName) { return SQLAuthAllow; } - int createTempView(const String& viewName) { return SQLAuthAllow; } - int dropView(const String& viewName) { return SQLAuthAllow; } - int dropTempView(const String& viewName) { return SQLAuthAllow; } + int createView(const String& /*viewName*/) { return SQLAuthAllow; } + int createTempView(const String& /*viewName*/) { return SQLAuthAllow; } + int dropView(const String& /*viewName*/) { return SQLAuthAllow; } + int dropTempView(const String& /*viewName*/) { return SQLAuthAllow; } int createVTable(const String& tableName, const String& moduleName); int dropVTable(const String& tableName, const String& moduleName); @@ -75,7 +75,7 @@ public: int allowSelect() { return SQLAuthAllow; } int allowRead(const String& tableName, const String& columnName); - int allowReindex(const String& indexName) { return SQLAuthAllow; } + int allowReindex(const String& /*indexName*/) { return SQLAuthAllow; } int allowAnalyze(const String& tableName); int allowFunction(const String& functionName); int allowPragma(const String& pragmaName, const String& firstArgument); |