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

Side by Side Diff: ui/message_center/cocoa/popup_collection.h

Issue 1917053003: unique_ptr_migration: clean up references to scoped_ptr as of r389721 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 7 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
« no previous file with comments | « ui/gl/gl_context_cgl.h ('k') | ui/ozone/platform/wayland/wayland_egl_surface.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 UI_MESSAGE_CENTER_COCOA_POPUP_COLLECTION_H_ 5 #ifndef UI_MESSAGE_CENTER_COCOA_POPUP_COLLECTION_H_
6 #define UI_MESSAGE_CENTER_COCOA_POPUP_COLLECTION_H_ 6 #define UI_MESSAGE_CENTER_COCOA_POPUP_COLLECTION_H_
7 7
8 #import <Cocoa/Cocoa.h> 8 #import <Cocoa/Cocoa.h>
9 9
10 #include <memory>
10 #include <set> 11 #include <set>
11 12
12 #include "base/mac/scoped_block.h" 13 #include "base/mac/scoped_block.h"
13 #import "base/mac/scoped_nsobject.h" 14 #import "base/mac/scoped_nsobject.h"
14 #import "base/memory/scoped_ptr.h"
15 #include "ui/message_center/message_center_export.h" 15 #include "ui/message_center/message_center_export.h"
16 16
17 namespace message_center { 17 namespace message_center {
18 class MessageCenter; 18 class MessageCenter;
19 class MessageCenterObserver; 19 class MessageCenterObserver;
20 } 20 }
21 21
22 namespace message_center { 22 namespace message_center {
23 typedef void(^AnimationEndedCallback)(); 23 typedef void(^AnimationEndedCallback)();
24 } 24 }
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 // to a very small value to expedite the test running. 92 // to a very small value to expedite the test running.
93 - (void)setAnimationDuration:(NSTimeInterval)duration; 93 - (void)setAnimationDuration:(NSTimeInterval)duration;
94 94
95 // Setter for testingAnimationEndedCallback_. The testing code could set it 95 // Setter for testingAnimationEndedCallback_. The testing code could set it
96 // to get called back when the animation ends. 96 // to get called back when the animation ends.
97 - (void)setAnimationEndedCallback: 97 - (void)setAnimationEndedCallback:
98 (message_center::AnimationEndedCallback)callback; 98 (message_center::AnimationEndedCallback)callback;
99 @end 99 @end
100 100
101 #endif // UI_MESSAGE_CENTER_COCOA_POPUP_COLLECTION_H_ 101 #endif // UI_MESSAGE_CENTER_COCOA_POPUP_COLLECTION_H_
OLDNEW
« no previous file with comments | « ui/gl/gl_context_cgl.h ('k') | ui/ozone/platform/wayland/wayland_egl_surface.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698