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

Unified Diff: remoting/host/clipboard_win.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/host/clipboard_mac.mm ('k') | remoting/host/clipboard_x11.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/clipboard_win.cc
diff --git a/remoting/host/clipboard_win.cc b/remoting/host/clipboard_win.cc
index f78457fda4cf5559b0553fdd95bd718e9cc77810..dd2cc28395326d9019a2578b862dee9a8cb26d67 100644
--- a/remoting/host/clipboard_win.cc
+++ b/remoting/host/clipboard_win.cc
@@ -88,7 +88,7 @@ class ScopedClipboard {
HANDLE GetData(UINT format) {
if (!opened_) {
NOTREACHED();
- return NULL;
+ return nullptr;
}
return ::GetClipboardData(format);
}
@@ -134,8 +134,8 @@ class ClipboardWin : public Clipboard {
};
ClipboardWin::ClipboardWin()
- : add_clipboard_format_listener_(NULL),
- remove_clipboard_format_listener_(NULL) {
+ : add_clipboard_format_listener_(nullptr),
+ remove_clipboard_format_listener_(nullptr) {
}
void ClipboardWin::Start(
« no previous file with comments | « remoting/host/clipboard_mac.mm ('k') | remoting/host/clipboard_x11.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698