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

Side by Side Diff: ui/message_center/views/message_center_controller.h

Issue 1868363002: Replace scoped_ptr with std::unique_ptr in //ui (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@scopedptrcc
Patch Set: scopedptrui: rebase-make_scoped_ptr 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 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_VIEWS_MESSAGE_CENTER_CONTROLLER_H_ 5 #ifndef UI_MESSAGE_CENTER_VIEWS_MESSAGE_CENTER_CONTROLLER_H_
6 #define UI_MESSAGE_CENTER_VIEWS_MESSAGE_CENTER_CONTROLLER_H_ 6 #define UI_MESSAGE_CENTER_VIEWS_MESSAGE_CENTER_CONTROLLER_H_
7 7
8 #include <memory>
8 #include <string> 9 #include <string>
9 10
10 #include "base/memory/scoped_ptr.h"
11 #include "base/strings/string16.h" 11 #include "base/strings/string16.h"
12 #include "ui/base/models/menu_model.h" 12 #include "ui/base/models/menu_model.h"
13 #include "ui/message_center/notifier_settings.h" 13 #include "ui/message_center/notifier_settings.h"
14 14
15 namespace message_center { 15 namespace message_center {
16 16
17 // Interface used by views to report clicks and other user actions. The views 17 // Interface used by views to report clicks and other user actions. The views
18 // by themselves do not know how to perform those operations, they ask 18 // by themselves do not know how to perform those operations, they ask
19 // MessageCenterController to do them. Implemented by MessageCenterView and 19 // MessageCenterController to do them. Implemented by MessageCenterView and
20 // MessagePopupCollection. 20 // MessagePopupCollection.
21 class MessageCenterController { 21 class MessageCenterController {
22 public: 22 public:
23 virtual void ClickOnNotification(const std::string& notification_id) = 0; 23 virtual void ClickOnNotification(const std::string& notification_id) = 0;
24 virtual void RemoveNotification(const std::string& notification_id, 24 virtual void RemoveNotification(const std::string& notification_id,
25 bool by_user) = 0; 25 bool by_user) = 0;
26 virtual scoped_ptr<ui::MenuModel> CreateMenuModel( 26 virtual std::unique_ptr<ui::MenuModel> CreateMenuModel(
27 const NotifierId& notifier_id, 27 const NotifierId& notifier_id,
28 const base::string16& display_source) = 0; 28 const base::string16& display_source) = 0;
29 virtual bool HasClickedListener(const std::string& notification_id) = 0; 29 virtual bool HasClickedListener(const std::string& notification_id) = 0;
30 virtual void ClickOnNotificationButton(const std::string& notification_id, 30 virtual void ClickOnNotificationButton(const std::string& notification_id,
31 int button_index) = 0; 31 int button_index) = 0;
32 virtual void ClickOnSettingsButton(const std::string& notification_id) = 0; 32 virtual void ClickOnSettingsButton(const std::string& notification_id) = 0;
33 }; 33 };
34 34
35 } // namespace message_center 35 } // namespace message_center
36 36
37 #endif // UI_MESSAGE_CENTER_VIEWS_MESSAGE_CENTER_CONTROLLER_H_ 37 #endif // UI_MESSAGE_CENTER_VIEWS_MESSAGE_CENTER_CONTROLLER_H_
OLDNEW
« no previous file with comments | « ui/message_center/views/message_bubble_base.h ('k') | ui/message_center/views/message_center_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698