Index: chrome/browser/extensions/extension_chrome_auth_private_api.h |
diff --git a/chrome/browser/extensions/extension_chrome_auth_private_api.h b/chrome/browser/extensions/extension_chrome_auth_private_api.h |
deleted file mode 100644 |
index 570b71095eddf3ab9f6797df913e71e3de2803b6..0000000000000000000000000000000000000000 |
--- a/chrome/browser/extensions/extension_chrome_auth_private_api.h |
+++ /dev/null |
@@ -1,30 +0,0 @@ |
-// Copyright (c) 2012 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_ |
- |
-#include <string> |
-#include "chrome/browser/extensions/extension_function.h" |
- |
-class SetCloudPrintCredentialsFunction : public AsyncExtensionFunction { |
- public: |
- DECLARE_EXTENSION_FUNCTION_NAME("chromeAuthPrivate.setCloudPrintCredentials"); |
- |
- 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(); |
- |
- // ExtensionFunction: |
- virtual bool RunImpl() OVERRIDE; |
-}; |
- |
- |
-#endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_CHROME_AUTH_PRIVATE_API_H_ |