Index: components/devtools_bridge/test/android/javatests/src/org/chromium/components/devtools_bridge/apiary/TestApiaryClientFactory.java |
diff --git a/components/devtools_bridge/test/android/javatests/src/org/chromium/components/devtools_bridge/apiary/TestApiaryClientFactory.java b/components/devtools_bridge/test/android/javatests/src/org/chromium/components/devtools_bridge/apiary/TestApiaryClientFactory.java |
new file mode 100644 |
index 0000000000000000000000000000000000000000..48efb9786f85f00d1e4f510b670cf44c66af9570 |
--- /dev/null |
+++ b/components/devtools_bridge/test/android/javatests/src/org/chromium/components/devtools_bridge/apiary/TestApiaryClientFactory.java |
@@ -0,0 +1,33 @@ |
+// Copyright 2014 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+package org.chromium.components.devtools_bridge.apiary; |
+ |
+/** |
+ * Implementation of ApiaryClientFactory for manual testing. |
+ */ |
+public class TestApiaryClientFactory extends ApiaryClientFactory { |
+ @Override |
+ public String getAPIKey() { |
+ return "AIzaSyAI1TKbOdqMQ5TltbBT15V5XaIILnDadhI"; |
+ } |
+ |
+ @Override |
+ public String getOAuthClientId() { |
+ return "287888336735-v2sniebgl82jgm8lpj6mesv982n505iq.apps.googleusercontent.com"; |
+ } |
+ |
+ @Override |
+ public String[] getGCMSenderIds() { |
+ return new String[] { getGCMSenderId() }; |
+ } |
+ |
+ public String getOAuthClientSecret() { |
+ return "wdMQhGcQqOZmSNteEbqx0IfY"; |
+ } |
+ |
+ public String getGCMSenderId() { |
+ return "287888336735"; |
+ } |
+} |