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

Unified Diff: extensions/browser/guest_view/app_view/app_view_guest.h

Issue 1909773002: Convert //extensions/browser from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 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: extensions/browser/guest_view/app_view/app_view_guest.h
diff --git a/extensions/browser/guest_view/app_view/app_view_guest.h b/extensions/browser/guest_view/app_view/app_view_guest.h
index 20bfdd166dab9ca8f658f670d912c4c301107635..d1e44dccff3bc70a841789203d78220a430c1d58 100644
--- a/extensions/browser/guest_view/app_view/app_view_guest.h
+++ b/extensions/browser/guest_view/app_view/app_view_guest.h
@@ -72,14 +72,14 @@ class AppViewGuest : public guest_view::GuestView<AppViewGuest> {
const Extension* guest_extension,
const WebContentsCreatedCallback& callback);
- void LaunchAppAndFireEvent(scoped_ptr<base::DictionaryValue> data,
+ void LaunchAppAndFireEvent(std::unique_ptr<base::DictionaryValue> data,
const WebContentsCreatedCallback& callback,
ExtensionHost* extension_host);
GURL url_;
std::string guest_extension_id_;
- scoped_ptr<AppViewGuestDelegate> app_view_guest_delegate_;
- scoped_ptr<AppDelegate> app_delegate_;
+ std::unique_ptr<AppViewGuestDelegate> app_view_guest_delegate_;
+ std::unique_ptr<AppDelegate> app_delegate_;
// This is used to ensure pending tasks will not fire after this object is
// destroyed.
« no previous file with comments | « extensions/browser/external_provider_interface.h ('k') | extensions/browser/guest_view/app_view/app_view_guest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698