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

Unified Diff: components/copresence/rpc/rpc_handler_unittest.cc

Issue 691223002: Replacing NULL with nullptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Using EXPECT_THAT Created 6 years, 2 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 | « components/copresence/mediums/audio/audio_recorder_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/copresence/rpc/rpc_handler_unittest.cc
diff --git a/components/copresence/rpc/rpc_handler_unittest.cc b/components/copresence/rpc/rpc_handler_unittest.cc
index 636caba40d46ab519556b276374ca730ef2986a8..b65028631a6e083d72fd331d26f1044114f4b9c3 100644
--- a/components/copresence/rpc/rpc_handler_unittest.cc
+++ b/components/copresence/rpc/rpc_handler_unittest.cc
@@ -85,7 +85,7 @@ class RpcHandlerTest : public testing::Test, public CopresenceDelegate {
}
net::URLRequestContextGetter* GetRequestContext() const override {
- return NULL;
+ return nullptr;
}
const std::string GetPlatformVersionString() const override {
@@ -100,14 +100,14 @@ class RpcHandlerTest : public testing::Test, public CopresenceDelegate {
return auth_token_;
}
- WhispernetClient* GetWhispernetClient() override { return NULL; }
+ WhispernetClient* GetWhispernetClient() override { return nullptr; }
protected:
void InvokeReportResponseHandler(int status_code,
const std::string& response) {
rpc_handler_.ReportResponseHandler(
base::Bind(&RpcHandlerTest::CaptureStatus, base::Unretained(this)),
- NULL,
+ nullptr,
status_code,
response);
}
« no previous file with comments | « components/copresence/mediums/audio/audio_recorder_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698