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

Unified Diff: chrome/browser/ui/views/apps/chrome_native_app_window_views_mac.mm

Issue 1340683002: Remove base's implicit_cast. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: implicitcast: numericstest Created 5 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: chrome/browser/ui/views/apps/chrome_native_app_window_views_mac.mm
diff --git a/chrome/browser/ui/views/apps/chrome_native_app_window_views_mac.mm b/chrome/browser/ui/views/apps/chrome_native_app_window_views_mac.mm
index ab7e05aa336eaa7b7643ddbc81a39292cc570bce..5572ab1c96bc5bb8cff055a016beb9d4cb6b440b 100644
--- a/chrome/browser/ui/views/apps/chrome_native_app_window_views_mac.mm
+++ b/chrome/browser/ui/views/apps/chrome_native_app_window_views_mac.mm
@@ -38,7 +38,7 @@
addObserver:self
selector:@selector(onWindowWillStartLiveResize:)
name:NSWindowWillStartLiveResizeNotification
- object:implicit_cast<ui::BaseWindow*>(nativeAppWindow)
+ object:static_cast<ui::BaseWindow*>(nativeAppWindow)
->GetNativeWindow()];
}
return self;

Powered by Google App Engine
This is Rietveld 408576698