diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-01 23:54:44 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-01 23:54:44 +0000 |
commit | 59a7ae4e1e6457bfd23c235209bd594471efef95 (patch) | |
tree | 431b908c9b859eb8b85229e9a860e8b0f4c70887 /chrome/browser/webdata/keyword_table.cc | |
parent | 07cb03a3088dda659d66522c69bbedef677f195e (diff) | |
download | chromium_src-59a7ae4e1e6457bfd23c235209bd594471efef95.zip chromium_src-59a7ae4e1e6457bfd23c235209bd594471efef95.tar.gz chromium_src-59a7ae4e1e6457bfd23c235209bd594471efef95.tar.bz2 |
Delete some unused code found by -Wunused-function
BUG=none,100309
Review URL: https://chromiumcodereview.appspot.com/10977073
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@159592 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/webdata/keyword_table.cc')
-rw-r--r-- | chrome/browser/webdata/keyword_table.cc | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/chrome/browser/webdata/keyword_table.cc b/chrome/browser/webdata/keyword_table.cc index 47d4852..fd0cb02 100644 --- a/chrome/browser/webdata/keyword_table.cc +++ b/chrome/browser/webdata/keyword_table.cc @@ -101,17 +101,6 @@ void BindURLToStatement(const TemplateURLData& data, s->BindString(starting_column + 15, data.sync_guid); } -// Signs search provider id and returns its signature. -std::string GetSearchProviderIDSignature(int64 id) { - return protector::SignSetting(base::Int64ToString(id)); -} - -// Checks if signature for search provider id is correct and returns the -// result. -bool IsSearchProviderIDValid(int64 id, const std::string& signature) { - return protector::IsSettingValid(base::Int64ToString(id), signature); -} - } // anonymous namespace KeywordTable::KeywordTable(sql::Connection* db, sql::MetaTable* meta_table) |