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

Side by Side Diff: chrome/browser/ui/views/browser_dialogs_views_mac.cc

Issue 1579863003: Convert Pass()→std::move() for Mac build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/ui/browser_dialogs.h" 5 #include <utility>
6 6
7 #include "chrome/browser/ui/bookmarks/bookmark_bubble_sign_in_delegate.h" 7 #include "chrome/browser/ui/bookmarks/bookmark_bubble_sign_in_delegate.h"
8 #include "chrome/browser/ui/browser.h" 8 #include "chrome/browser/ui/browser.h"
9 #include "chrome/browser/ui/browser_dialogs.h"
9 #include "chrome/browser/ui/views/bookmarks/bookmark_bubble_view.h" 10 #include "chrome/browser/ui/views/bookmarks/bookmark_bubble_view.h"
10 #include "chrome/browser/ui/views/website_settings/website_settings_popup_view.h " 11 #include "chrome/browser/ui/views/website_settings/website_settings_popup_view.h "
11 12
12 // This file provides definitions of desktop browser dialog-creation methods for 13 // This file provides definitions of desktop browser dialog-creation methods for
13 // Mac where a Cocoa browser is using Views dialogs. I.e. it is included in the 14 // Mac where a Cocoa browser is using Views dialogs. I.e. it is included in the
14 // Cocoa build and definitions under chrome/browser/ui/cocoa may select at 15 // Cocoa build and definitions under chrome/browser/ui/cocoa may select at
15 // runtime whether to show a Cocoa dialog, or the toolkit-views dialog defined 16 // runtime whether to show a Cocoa dialog, or the toolkit-views dialog defined
16 // here (declared in browser_dialogs.h). 17 // here (declared in browser_dialogs.h).
17 18
18 namespace chrome { 19 namespace chrome {
(...skipping 13 matching lines...) Expand all
32 gfx::NativeView parent, 33 gfx::NativeView parent,
33 bookmarks::BookmarkBubbleObserver* observer, 34 bookmarks::BookmarkBubbleObserver* observer,
34 Browser* browser, 35 Browser* browser,
35 const GURL& url, 36 const GURL& url,
36 bool already_bookmarked) { 37 bool already_bookmarked) {
37 // The Views dialog may prompt for sign in. 38 // The Views dialog may prompt for sign in.
38 scoped_ptr<BubbleSyncPromoDelegate> delegate( 39 scoped_ptr<BubbleSyncPromoDelegate> delegate(
39 new BookmarkBubbleSignInDelegate(browser)); 40 new BookmarkBubbleSignInDelegate(browser));
40 41
41 BookmarkBubbleView::ShowBubble(nullptr, gfx::Rect(anchor_point, gfx::Size()), 42 BookmarkBubbleView::ShowBubble(nullptr, gfx::Rect(anchor_point, gfx::Size()),
42 parent, observer, delegate.Pass(), 43 parent, observer, std::move(delegate),
43 browser->profile(), url, already_bookmarked); 44 browser->profile(), url, already_bookmarked);
44 } 45 }
45 46
46 } // namespace chrome 47 } // namespace chrome
OLDNEW
« no previous file with comments | « chrome/browser/ui/cocoa/translate/translate_bubble_controller.mm ('k') | chrome/browser/web_applications/web_app_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698