Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(840)

Unified Diff: third_party/WebKit/Source/modules/webdatabase/DatabaseAuthorizer.cpp

Issue 2811793004: Rename EqualIgnoringCase*() to DeprecatedEqualIgnoringCase*() (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/webdatabase/DatabaseAuthorizer.cpp
diff --git a/third_party/WebKit/Source/modules/webdatabase/DatabaseAuthorizer.cpp b/third_party/WebKit/Source/modules/webdatabase/DatabaseAuthorizer.cpp
index 11304a2152be5f091abe1b9ed5e130d84e7cda0f..b38b0b6d9fdac830c374d3efb56357abc35e39a8 100644
--- a/third_party/WebKit/Source/modules/webdatabase/DatabaseAuthorizer.cpp
+++ b/third_party/WebKit/Source/modules/webdatabase/DatabaseAuthorizer.cpp
@@ -244,7 +244,7 @@ int DatabaseAuthorizer::CreateVTable(const String& table_name,
return kSQLAuthDeny;
// Allow only the FTS3 extension
- if (!EqualIgnoringCase(module_name, "fts3"))
+ if (!DeprecatedEqualIgnoringCase(module_name, "fts3"))
return kSQLAuthDeny;
last_action_changed_database_ = true;
@@ -257,7 +257,7 @@ int DatabaseAuthorizer::DropVTable(const String& table_name,
return kSQLAuthDeny;
// Allow only the FTS3 extension
- if (!EqualIgnoringCase(module_name, "fts3"))
+ if (!DeprecatedEqualIgnoringCase(module_name, "fts3"))
return kSQLAuthDeny;
return UpdateDeletesBasedOnTableName(table_name);
@@ -355,7 +355,7 @@ int DatabaseAuthorizer::DenyBasedOnTableName(const String& table_name) const {
// equalIgnoringCase(tableName, Database::databaseInfoTableName()))
// return SQLAuthDeny;
- if (EqualIgnoringCase(table_name, database_info_table_name_))
+ if (DeprecatedEqualIgnoringCase(table_name, database_info_table_name_))
return kSQLAuthDeny;
return kSQLAuthAllow;

Powered by Google App Engine
This is Rietveld 408576698