diff options
author | joi@chromium.org <joi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-31 14:01:25 +0000 |
---|---|---|
committer | joi@chromium.org <joi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-31 14:01:25 +0000 |
commit | 1abac7ad4a3da14065cfc2c1c14841f223cf324c (patch) | |
tree | 168a31266a902c27b4d9d9f2f6def35f1b8d8ee3 /google_apis/google_api_keys.cc | |
parent | 9ef635da6c4fcc97b5fb755645399dc2e0efe4e2 (diff) | |
download | chromium_src-1abac7ad4a3da14065cfc2c1c14841f223cf324c.zip chromium_src-1abac7ad4a3da14065cfc2c1c14841f223cf324c.tar.gz chromium_src-1abac7ad4a3da14065cfc2c1c14841f223cf324c.tar.bz2 |
Remove temporary keys. See http://chromium.org/developers/how-tos/api-keys.
BUG=145584
Review URL: https://chromiumcodereview.appspot.com/12091043
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@179878 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'google_apis/google_api_keys.cc')
-rw-r--r-- | google_apis/google_api_keys.cc | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/google_apis/google_api_keys.cc b/google_apis/google_api_keys.cc index 5b11247..97ef31a 100644 --- a/google_apis/google_api_keys.cc +++ b/google_apis/google_api_keys.cc @@ -38,10 +38,7 @@ #define DUMMY_API_TOKEN "dummytoken" #if !defined(GOOGLE_API_KEY) -// TODO(joi): This is temporary; switch to DUMMY_API_TOKEN once people -// have had some time to install API keys per -// http://chromium.org/developers/how-tos/api-keys -#define GOOGLE_API_KEY "AIzaSyBHDrl33hwRp4rMQY0ziRbj8K9LPA6vUCY" +#define GOOGLE_API_KEY DUMMY_API_TOKEN #endif #if !defined(GOOGLE_CLIENT_ID_MAIN) @@ -73,15 +70,11 @@ // variables. If set, they will be used to replace any of the client // IDs and secrets above that have not been set (and only those; they // will not override already-set values). -// -// TODO(joi): This is temporary; make both blank once people have had -// some time to install API keys per -// http://chromium.org/developers/how-tos/api-keys #if !defined(GOOGLE_DEFAULT_CLIENT_ID) -#define GOOGLE_DEFAULT_CLIENT_ID "609716072145.apps.googleusercontent.com" +#define GOOGLE_DEFAULT_CLIENT_ID "" #endif #if !defined(GOOGLE_DEFAULT_CLIENT_SECRET) -#define GOOGLE_DEFAULT_CLIENT_SECRET "WF4uG3gJzEH0KLpS7OuFBDux" +#define GOOGLE_DEFAULT_CLIENT_SECRET "" #endif namespace switches { |