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

Unified Diff: remoting/protocol/clipboard_filter.cc

Issue 810133003: replace NULL->nullptr in src/remoting. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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 | « remoting/protocol/clipboard_echo_filter.cc ('k') | remoting/protocol/connection_to_client.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/clipboard_filter.cc
diff --git a/remoting/protocol/clipboard_filter.cc b/remoting/protocol/clipboard_filter.cc
index d82547f8971316217ea4b5fbfd474a3104d2757c..e45140e28f0d102a7bcfc278ebdf4bc56f17ad81 100644
--- a/remoting/protocol/clipboard_filter.cc
+++ b/remoting/protocol/clipboard_filter.cc
@@ -8,7 +8,7 @@
namespace remoting {
namespace protocol {
-ClipboardFilter::ClipboardFilter() : clipboard_stub_(NULL), enabled_(true) {
+ClipboardFilter::ClipboardFilter() : clipboard_stub_(nullptr), enabled_(true) {
}
ClipboardFilter::ClipboardFilter(ClipboardStub* clipboard_stub)
@@ -23,7 +23,7 @@ void ClipboardFilter::set_clipboard_stub(ClipboardStub* clipboard_stub) {
}
void ClipboardFilter::InjectClipboardEvent(const ClipboardEvent& event) {
- if (enabled_ && clipboard_stub_ != NULL)
+ if (enabled_ && clipboard_stub_ != nullptr)
clipboard_stub_->InjectClipboardEvent(event);
}
« no previous file with comments | « remoting/protocol/clipboard_echo_filter.cc ('k') | remoting/protocol/connection_to_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698