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

Side by Side Diff: chrome/browser/ui/cocoa/panels/panel_stack_window_cocoa.h

Issue 1865213004: Convert //chrome/browser/ui from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 8 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 (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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 #ifndef CHROME_BROWSER_UI_COCOA_PANELS_PANEL_STACK_WINDOW_COCOA_H_ 5 #ifndef CHROME_BROWSER_UI_COCOA_PANELS_PANEL_STACK_WINDOW_COCOA_H_
6 #define CHROME_BROWSER_UI_COCOA_PANELS_PANEL_STACK_WINDOW_COCOA_H_ 6 #define CHROME_BROWSER_UI_COCOA_PANELS_PANEL_STACK_WINDOW_COCOA_H_
7 7
8 #import <Cocoa/Cocoa.h> 8 #import <Cocoa/Cocoa.h>
9 9
10 #include <list> 10 #include <list>
11 #include <map> 11 #include <map>
12 #include <memory>
12 13
13 #include "base/mac/scoped_nsobject.h" 14 #include "base/mac/scoped_nsobject.h"
14 #include "base/macros.h" 15 #include "base/macros.h"
15 #include "base/memory/scoped_ptr.h"
16 #include "chrome/browser/ui/panels/native_panel_stack_window.h" 16 #include "chrome/browser/ui/panels/native_panel_stack_window.h"
17 #include "ui/gfx/geometry/rect.h" 17 #include "ui/gfx/geometry/rect.h"
18 18
19 @class BatchBoundsAnimationDelegate; 19 @class BatchBoundsAnimationDelegate;
20 class Panel; 20 class Panel;
21 class PanelStackWindowCocoa; 21 class PanelStackWindowCocoa;
22 22
23 // A native window that acts as the owner of all/partial panels in the stack, 23 // A native window that acts as the owner of all/partial panels in the stack,
24 // in order to make these panels appear as a single window. 24 // in order to make these panels appear as a single window.
25 class PanelStackWindowCocoa : public NativePanelStackWindow { 25 class PanelStackWindowCocoa : public NativePanelStackWindow {
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 // Used to animate the bounds changes at a synchronized pace. 85 // Used to animate the bounds changes at a synchronized pace.
86 // Lifetime controlled manually, needs more than just |release| to terminate. 86 // Lifetime controlled manually, needs more than just |release| to terminate.
87 NSViewAnimation* bounds_animation_; 87 NSViewAnimation* bounds_animation_;
88 base::scoped_nsobject<BatchBoundsAnimationDelegate> 88 base::scoped_nsobject<BatchBoundsAnimationDelegate>
89 bounds_animation_delegate_; 89 bounds_animation_delegate_;
90 90
91 DISALLOW_COPY_AND_ASSIGN(PanelStackWindowCocoa); 91 DISALLOW_COPY_AND_ASSIGN(PanelStackWindowCocoa);
92 }; 92 };
93 93
94 #endif // CHROME_BROWSER_UI_COCOA_PANELS_PANEL_STACK_WINDOW_COCOA_H_ 94 #endif // CHROME_BROWSER_UI_COCOA_PANELS_PANEL_STACK_WINDOW_COCOA_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/cocoa/panels/panel_cocoa_unittest.mm ('k') | chrome/browser/ui/cocoa/panels/panel_window_controller_cocoa.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698