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

Unified Diff: extensions/shell/browser/shell_native_app_window.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_native_app_window.cc
diff --git a/extensions/shell/browser/shell_native_app_window.cc b/extensions/shell/browser/shell_native_app_window.cc
index 97968a9720161041efaf2e5976ec6b037ba21883..bbb8e528dcf9bdf1492cc854b1939cb0a44bf33d 100644
--- a/extensions/shell/browser/shell_native_app_window.cc
+++ b/extensions/shell/browser/shell_native_app_window.cc
@@ -137,7 +137,7 @@ void ShellNativeAppWindow::SetAlwaysOnTop(bool always_on_top) {
gfx::NativeView ShellNativeAppWindow::GetHostView() const {
NOTIMPLEMENTED();
- return NULL;
+ return nullptr;
}
gfx::Point ShellNativeAppWindow::GetDialogPosition(const gfx::Size& size) {
@@ -188,7 +188,7 @@ void ShellNativeAppWindow::UpdateDraggableRegions(
SkRegion* ShellNativeAppWindow::GetDraggableRegion() {
NOTIMPLEMENTED();
- return NULL;
+ return nullptr;
}
void ShellNativeAppWindow::UpdateShape(scoped_ptr<SkRegion> region) {

Powered by Google App Engine
This is Rietveld 408576698