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

Unified Diff: chrome/browser/extensions/extension_chrome_auth_private_api.h

Issue 10071035: RefCounted types should not have public destructors, chrome/browser/extensions (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Compile fix Created 8 years, 8 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/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
index fd0559c8164c7833c7e57dd4f841ccdc845ecef5..7aba9203c712daa5264036e9689d6dae5ccbf85f 100644
--- a/chrome/browser/extensions/extension_chrome_auth_private_api.h
+++ b/chrome/browser/extensions/extension_chrome_auth_private_api.h
@@ -11,6 +11,8 @@
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
@@ -21,10 +23,8 @@ class SetCloudPrintCredentialsFunction : public AsyncExtensionFunction {
protected:
virtual ~SetCloudPrintCredentialsFunction();
+ // ExtensionFunction:
virtual bool RunImpl() OVERRIDE;
-
- private:
- DECLARE_EXTENSION_FUNCTION_NAME("chromeAuthPrivate.setCloudPrintCredentials");
};
« no previous file with comments | « chrome/browser/extensions/execute_code_in_tab_function.cc ('k') | chrome/browser/extensions/extension_content_settings_api.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698