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

Unified Diff: chrome/browser/extensions/api/cloud_print_private/cloud_print_private_api.h

Issue 10690177: Renamed chrome_auth to cloud_print. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 5 months 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: chrome/browser/extensions/api/cloud_print_private/cloud_print_private_api.h
===================================================================
--- chrome/browser/extensions/api/cloud_print_private/cloud_print_private_api.h (revision 0)
+++ chrome/browser/extensions/api/cloud_print_private/cloud_print_private_api.h (working copy)
@@ -2,19 +2,19 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef CHROME_BROWSER_EXTENSIONS_API_CHROME_AUTH_PRIVATE_CHROME_AUTH_PRIVATE_API_H_
-#define CHROME_BROWSER_EXTENSIONS_API_CHROME_AUTH_PRIVATE_CHROME_AUTH_PRIVATE_API_H_
+#ifndef CHROME_BROWSER_EXTENSIONS_API_CLOUD_PRINT_PRIVATE_CLOUD_PRINT_PRIVATE_API_H_
+#define CHROME_BROWSER_EXTENSIONS_API_CLOUD_PRINT_PRIVATE_CLOUD_PRINT_PRIVATE_API_H_
#include <string>
#include "chrome/browser/extensions/extension_function.h"
namespace extensions {
-class SetCloudPrintCredentialsFunction : public AsyncExtensionFunction {
+class CloudPrintSetCredentialsFunction : public AsyncExtensionFunction {
public:
- DECLARE_EXTENSION_FUNCTION_NAME("chromeAuthPrivate.setCloudPrintCredentials");
+ DECLARE_EXTENSION_FUNCTION_NAME("cloudPrintPrivate.setCredentials");
- SetCloudPrintCredentialsFunction();
+ CloudPrintSetCredentialsFunction();
// 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
@@ -22,7 +22,7 @@
static void SetTestMode(bool test_mode_enabled);
protected:
- virtual ~SetCloudPrintCredentialsFunction();
+ virtual ~CloudPrintSetCredentialsFunction();
// ExtensionFunction:
virtual bool RunImpl() OVERRIDE;
@@ -30,4 +30,4 @@
} // namespace extensions
-#endif // CHROME_BROWSER_EXTENSIONS_API_CHROME_AUTH_PRIVATE_CHROME_AUTH_PRIVATE_API_H_
+#endif // CHROME_BROWSER_EXTENSIONS_API_CLOUD_PRINT_PRIVATE_CLOUD_PRINT_PRIVATE_API_H_

Powered by Google App Engine
This is Rietveld 408576698