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

Unified Diff: extensions/renderer/dom_activity_logger.h

Issue 1851933002: Convert //url to use std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: IWYU fixup 7 Created 4 years, 9 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 | « device/usb/webusb_descriptors.h ('k') | extensions/renderer/dom_activity_logger.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/renderer/dom_activity_logger.h
diff --git a/extensions/renderer/dom_activity_logger.h b/extensions/renderer/dom_activity_logger.h
index c9979e5369d14264e4d86cb2a060e16b9c4965f3..3956c4847b4d8aa1a8bac728a1bd68f8811fe535 100644
--- a/extensions/renderer/dom_activity_logger.h
+++ b/extensions/renderer/dom_activity_logger.h
@@ -5,6 +5,7 @@
#ifndef EXTENSIONS_RENDERER_DOM_ACTIVITY_LOGGER_H_
#define EXTENSIONS_RENDERER_DOM_ACTIVITY_LOGGER_H_
+#include <memory>
#include <string>
#include "base/macros.h"
@@ -76,7 +77,7 @@ class DOMActivityLogger: public blink::WebDOMActivityLogger {
const GURL& url,
const base::string16& url_title,
DomActionType::Type call_type,
- scoped_ptr<base::ListValue> args);
+ std::unique_ptr<base::ListValue> args);
// The id of the extension with which this logger is associated.
std::string extension_id_;
« no previous file with comments | « device/usb/webusb_descriptors.h ('k') | extensions/renderer/dom_activity_logger.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698