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

Unified Diff: components/search_engines/keyword_table.h

Issue 1551433002: Switch to standard integer types in components/, part 3 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more Created 5 years 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: components/search_engines/keyword_table.h
diff --git a/components/search_engines/keyword_table.h b/components/search_engines/keyword_table.h
index ef4569424fa93fdac48db574b8540357c2b6b26a..2ac8695fca5750ea531e7f71224873defdad54f8 100644
--- a/components/search_engines/keyword_table.h
+++ b/components/search_engines/keyword_table.h
@@ -5,11 +5,14 @@
#ifndef COMPONENTS_SEARCH_ENGINES_KEYWORD_TABLE_H_
#define COMPONENTS_SEARCH_ENGINES_KEYWORD_TABLE_H_
+#include <stdint.h>
+
#include <string>
#include <vector>
#include "base/compiler_specific.h"
#include "base/gtest_prod_util.h"
+#include "base/macros.h"
#include "base/strings/string16.h"
#include "components/search_engines/template_url_id.h"
#include "components/webdata/common/web_database_table.h"
@@ -114,8 +117,8 @@ class KeywordTable : public WebDatabaseTable {
bool GetKeywords(Keywords* keywords);
// ID (TemplateURLData->id) of the default search provider.
- bool SetDefaultSearchProviderID(int64 id);
- int64 GetDefaultSearchProviderID();
+ bool SetDefaultSearchProviderID(int64_t id);
+ int64_t GetDefaultSearchProviderID();
// Version of the built-in keywords.
bool SetBuiltinKeywordVersion(int version);
« no previous file with comments | « components/search_engines/detect_desktop_search_win_unittest.cc ('k') | components/search_engines/keyword_table.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698