summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/extension_chrome_auth_private_api.h
diff options
context:
space:
mode:
authorsanjeevr@chromium.org <sanjeevr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-06-25 06:26:00 +0000
committersanjeevr@chromium.org <sanjeevr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-06-25 06:26:00 +0000
commit528c52e506b04fc20255d2d06393cbb091b67dec (patch)
tree88ea614f251fa98c488d07fc58ca2d2c9722bd7a /chrome/browser/extensions/extension_chrome_auth_private_api.h
parentba1fa653e6f4137c6c4441d15e3a8e71d2f9d719 (diff)
downloadchromium_src-528c52e506b04fc20255d2d06393cbb091b67dec.zip
chromium_src-528c52e506b04fc20255d2d06393cbb091b67dec.tar.gz
chromium_src-528c52e506b04fc20255d2d06393cbb091b67dec.tar.bz2
Added a private chromeAuthPrivate API.
Ceated a component hosted app that uses this to set cloud print credentials. BUG=None TEST=Unit-tests Review URL: http://codereview.chromium.org/7253001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@90496 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/extensions/extension_chrome_auth_private_api.h')
-rw-r--r--chrome/browser/extensions/extension_chrome_auth_private_api.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/chrome/browser/extensions/extension_chrome_auth_private_api.h b/chrome/browser/extensions/extension_chrome_auth_private_api.h
new file mode 100644
index 0000000..d5f6629
--- /dev/null
+++ b/chrome/browser/extensions/extension_chrome_auth_private_api.h
@@ -0,0 +1,31 @@
+// Copyright (c) 2011 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.
+
+#ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_CHROME_AUTH_PRIVATE_API_H_
+#define CHROME_BROWSER_EXTENSIONS_EXTENSION_CHROME_AUTH_PRIVATE_API_H_
+#pragma once
+
+#include <string>
+#include "chrome/browser/extensions/extension_function.h"
+
+class SetCloudPrintCredentialsFunction : public AsyncExtensionFunction {
+ public:
+ SetCloudPrintCredentialsFunction();
+
+ // For use only in tests - sets a flag that can cause this function to not
+ // actually set the credentials but instead simply reflect the passed in
+ // arguments appended together as one string back in results_.
+ static void SetTestMode(bool test_mode_enabled);
+
+ protected:
+ virtual ~SetCloudPrintCredentialsFunction();
+
+ virtual bool RunImpl();
+
+ private:
+ DECLARE_EXTENSION_FUNCTION_NAME("chromeAuthPrivate.setCloudPrintCredentials");
+};
+
+
+#endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_CHROME_AUTH_PRIVATE_API_H_