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

Unified Diff: content/browser/accessibility/browser_accessibility_state_impl_win.cc

Issue 642313003: [C++11 Allowed Features] Declares a type-safe null pointer converting from NULL to nullptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Including id in the AUTHORS file. 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
Index: content/browser/accessibility/browser_accessibility_state_impl_win.cc
diff --git a/content/browser/accessibility/browser_accessibility_state_impl_win.cc b/content/browser/accessibility/browser_accessibility_state_impl_win.cc
index 28f05e0e7ec2992feb43ec1f01a65ce6bb3beb2c..0178c0444fe333eb9c9d61419247dd60b15dce0e 100644
--- a/content/browser/accessibility/browser_accessibility_state_impl_win.cc
+++ b/content/browser/accessibility/browser_accessibility_state_impl_win.cc
@@ -37,7 +37,7 @@ void BrowserAccessibilityStateImpl::UpdatePlatformSpecificHistograms() {
// Get the file paths of all DLLs loaded.
HANDLE process = GetCurrentProcess();
- HMODULE* modules = NULL;
+ HMODULE* modules = nullptr;
DWORD bytes_required;
if (!EnumProcessModules(process, modules, 0, &bytes_required))
return;

Powered by Google App Engine
This is Rietveld 408576698