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

Unified Diff: extensions/shell/browser/shell_app_delegate.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/shell/browser/shell_app_delegate.cc
diff --git a/extensions/shell/browser/shell_app_delegate.cc b/extensions/shell/browser/shell_app_delegate.cc
index be70ec4f3f6242a2d5e86695338579b68e433d62..ddbd782122d9e5786bc5bdb7f7a8ba159f45d384 100644
--- a/extensions/shell/browser/shell_app_delegate.cc
+++ b/extensions/shell/browser/shell_app_delegate.cc
@@ -28,7 +28,7 @@ content::WebContents* ShellAppDelegate::OpenURLFromTab(
content::WebContents* source,
const content::OpenURLParams& params) {
NOTIMPLEMENTED();
- return NULL;
+ return nullptr;
}
void ShellAppDelegate::AddNewContents(content::BrowserContext* context,
@@ -44,7 +44,7 @@ content::ColorChooser* ShellAppDelegate::ShowColorChooser(
content::WebContents* web_contents,
SkColor initial_color) {
NOTIMPLEMENTED();
- return NULL;
+ return nullptr;
}
void ShellAppDelegate::RunFileChooser(

Powered by Google App Engine
This is Rietveld 408576698