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

Unified Diff: content/browser/accessibility/accessibility_tree_formatter.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/accessibility_tree_formatter.cc
diff --git a/content/browser/accessibility/accessibility_tree_formatter.cc b/content/browser/accessibility/accessibility_tree_formatter.cc
index d4c189fb6f1b3a6ff51b5e42ce63775e6e9f33c8..0c9d2a0ab8562d05d9a421a2fd18495daa1d8a8c 100644
--- a/content/browser/accessibility/accessibility_tree_formatter.cc
+++ b/content/browser/accessibility/accessibility_tree_formatter.cc
@@ -35,7 +35,7 @@ AccessibilityTreeFormatter* AccessibilityTreeFormatter::Create(
static_cast<WebContentsImpl*>(web_contents)->
GetRootBrowserAccessibilityManager();
if (!manager)
- return NULL;
+ return nullptr;
BrowserAccessibility* root = manager->GetRoot();
return new AccessibilityTreeFormatter(root);

Powered by Google App Engine
This is Rietveld 408576698