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

Unified Diff: chrome/browser/extensions/api/identity/identity_api.h

Issue 10694111: RefCounted types should not have public destructors (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/identity/identity_api.h
diff --git a/chrome/browser/extensions/api/identity/identity_api.h b/chrome/browser/extensions/api/identity/identity_api.h
index 74dbeb62b0e870c881826cf377a6920f9b2ccd9c..776b554188cf9fb5a39bd29cc6e4e2d51420b348 100644
--- a/chrome/browser/extensions/api/identity/identity_api.h
+++ b/chrome/browser/extensions/api/identity/identity_api.h
@@ -58,6 +58,8 @@ class GetAuthTokenFunction : public AsyncExtensionFunction,
class LaunchWebAuthFlowFunction : public AsyncExtensionFunction,
public WebAuthFlow::Delegate {
public:
+ DECLARE_EXTENSION_FUNCTION_NAME("experimental.identity.launchWebAuthFlow");
+
LaunchWebAuthFlowFunction();
private:
@@ -69,8 +71,6 @@ class LaunchWebAuthFlowFunction : public AsyncExtensionFunction,
virtual void OnAuthFlowFailure() OVERRIDE;
scoped_ptr<WebAuthFlow> auth_flow_;
-
- DECLARE_EXTENSION_FUNCTION_NAME("experimental.identity.launchWebAuthFlow");
};
} // namespace extensions

Powered by Google App Engine
This is Rietveld 408576698