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

Unified Diff: remoting/test/app_remoting_report_issue_request.h

Issue 1864213002: Convert //remoting to use std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Mac IWYU 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: remoting/test/app_remoting_report_issue_request.h
diff --git a/remoting/test/app_remoting_report_issue_request.h b/remoting/test/app_remoting_report_issue_request.h
index bcb02c59f0aa4654405223db856b66c513b0bb92..f118893d26d6cc686afc7ba6b4c196cf47b5086f 100644
--- a/remoting/test/app_remoting_report_issue_request.h
+++ b/remoting/test/app_remoting_report_issue_request.h
@@ -5,12 +5,12 @@
#ifndef REMOTING_TEST_APP_REMOTING_REPORT_ISSUE_REQUEST_H_
#define REMOTING_TEST_APP_REMOTING_REPORT_ISSUE_REQUEST_H_
+#include <memory>
#include <string>
#include "base/callback.h"
#include "base/macros.h"
#include "base/memory/ref_counted.h"
-#include "base/memory/scoped_ptr.h"
#include "net/url_request/url_fetcher_delegate.h"
#include "remoting/test/app_remoting_service_urls.h"
@@ -46,7 +46,7 @@ class AppRemotingReportIssueRequest : public net::URLFetcherDelegate {
void OnURLFetchComplete(const net::URLFetcher* source) override;
// Holds the URLFetcher for the ReportIssue request.
- scoped_ptr<net::URLFetcher> request_;
+ std::unique_ptr<net::URLFetcher> request_;
// Provides application-specific context for the network request.
scoped_refptr<remoting::URLRequestContextGetter> request_context_getter_;
« no previous file with comments | « remoting/test/app_remoting_latency_test_fixture.cc ('k') | remoting/test/app_remoting_report_issue_request_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698