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

Unified Diff: chrome/browser/cocoa/bookmark_editor_controller.mm

Issue 270067: Converts some uses of native_view to native_window. This is necessitated... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 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: chrome/browser/cocoa/bookmark_editor_controller.mm
===================================================================
--- chrome/browser/cocoa/bookmark_editor_controller.mm (revision 28706)
+++ chrome/browser/cocoa/bookmark_editor_controller.mm (working copy)
@@ -11,15 +11,14 @@
#import "chrome/browser/cocoa/bookmark_editor_controller.h"
// static; implemented for each platform.
-void BookmarkEditor::Show(gfx::NativeView parent_hwnd,
+void BookmarkEditor::Show(gfx::NativeWindow parent_hwnd,
Profile* profile,
const BookmarkNode* parent,
const BookmarkNode* node,
Configuration configuration,
Handler* handler) {
- NSWindow* window = [parent_hwnd window];
BookmarkEditorController* controller = [[BookmarkEditorController alloc]
- initWithParentWindow:window
+ initWithParentWindow:parent_hwnd
profile:profile
parent:parent
node:node

Powered by Google App Engine
This is Rietveld 408576698