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

Unified Diff: extensions/browser/api/hid/hid_api.cc

Issue 598173003: Run clang-modernize -use-nullptr over src/extensions/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
Index: extensions/browser/api/hid/hid_api.cc
diff --git a/extensions/browser/api/hid/hid_api.cc b/extensions/browser/api/hid/hid_api.cc
index 99cf1bd253f1a5415287da44039f8abed98f5821..72c9171f0bdec52d18b252745d9636d3db8ee643 100644
--- a/extensions/browser/api/hid/hid_api.cc
+++ b/extensions/browser/api/hid/hid_api.cc
@@ -59,7 +59,8 @@ void ConvertHidDeviceFilter(linked_ptr<hid::DeviceFilter> input,
namespace extensions {
HidAsyncApiFunction::HidAsyncApiFunction()
- : device_manager_(NULL), connection_manager_(NULL) {}
+ : device_manager_(nullptr), connection_manager_(nullptr) {
+}
HidAsyncApiFunction::~HidAsyncApiFunction() {}

Powered by Google App Engine
This is Rietveld 408576698