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

Unified Diff: chrome/browser/ui/webui/signin_internals_ui.h

Issue 602773002: Handle multiple signin_internal_uis by using a linked_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove unneeded headers Created 6 years, 3 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
« no previous file with comments | « no previous file | chrome/browser/ui/webui/signin_internals_ui.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/webui/signin_internals_ui.h
diff --git a/chrome/browser/ui/webui/signin_internals_ui.h b/chrome/browser/ui/webui/signin_internals_ui.h
index 84cdeec2727d1c8badbb8f2e1e47483388f1ad4a..edd6f0fd88a10ebf580480e5181cafe702c1b181 100644
--- a/chrome/browser/ui/webui/signin_internals_ui.h
+++ b/chrome/browser/ui/webui/signin_internals_ui.h
@@ -7,7 +7,6 @@
#include "base/basictypes.h"
#include "base/compiler_specific.h"
-#include "base/memory/scoped_ptr.h"
#include "base/values.h"
#include "components/signin/core/browser/about_signin_internals.h"
#include "content/public/browser/web_ui_controller.h"
@@ -26,12 +25,11 @@ class SignInInternalsUI : public content::WebUIController,
const base::ListValue& args) OVERRIDE;
// AboutSigninInternals::Observer::OnSigninStateChanged implementation.
- virtual void OnSigninStateChanged(
- scoped_ptr<base::DictionaryValue> info) OVERRIDE;
+ virtual void OnSigninStateChanged(const base::DictionaryValue* info) OVERRIDE;
// Notification that the cookie accounts are ready to be displayed.
virtual void OnCookieAccountsFetched(
- scoped_ptr<base::DictionaryValue> info) OVERRIDE;
+ const base::DictionaryValue* info) OVERRIDE;
private:
DISALLOW_COPY_AND_ASSIGN(SignInInternalsUI);
« no previous file with comments | « no previous file | chrome/browser/ui/webui/signin_internals_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698