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

Side by Side Diff: chrome/browser/ui/views/message_center/web_notification_tray.h

Issue 318173002: Fix the notification center label. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Notification Center Title: Set in ctor. Created 6 years, 6 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 | Annotate | Revision Log
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 CHROME_BROWSER_UI_VIEWS_MESSAGE_CENTER_WEB_NOTIFICATION_TRAY_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_MESSAGE_CENTER_WEB_NOTIFICATION_TRAY_H_
6 #define CHROME_BROWSER_UI_VIEWS_MESSAGE_CENTER_WEB_NOTIFICATION_TRAY_H_ 6 #define CHROME_BROWSER_UI_VIEWS_MESSAGE_CENTER_WEB_NOTIFICATION_TRAY_H_
7 7
8 #include "base/memory/weak_ptr.h" 8 #include "base/memory/weak_ptr.h"
9 #include "base/prefs/pref_member.h" 9 #include "base/prefs/pref_member.h"
10 #include "chrome/browser/status_icons/status_icon_menu_model.h" 10 #include "chrome/browser/status_icons/status_icon_menu_model.h"
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 MessageCenterWidgetDelegate* message_center_delegate_; 113 MessageCenterWidgetDelegate* message_center_delegate_;
114 scoped_ptr<message_center::MessagePopupCollection> popup_collection_; 114 scoped_ptr<message_center::MessagePopupCollection> popup_collection_;
115 115
116 StatusIcon* status_icon_; 116 StatusIcon* status_icon_;
117 StatusIconMenuModel* status_icon_menu_; 117 StatusIconMenuModel* status_icon_menu_;
118 scoped_ptr<MessageCenterTray> message_center_tray_; 118 scoped_ptr<MessageCenterTray> message_center_tray_;
119 gfx::Point mouse_click_point_; 119 gfx::Point mouse_click_point_;
120 120
121 bool should_update_tray_content_; 121 bool should_update_tray_content_;
122 bool last_quiet_mode_state_; 122 bool last_quiet_mode_state_;
123 base::string16 title_;
123 124
124 DISALLOW_COPY_AND_ASSIGN(WebNotificationTray); 125 DISALLOW_COPY_AND_ASSIGN(WebNotificationTray);
125 }; 126 };
126 127
127 } // namespace message_center 128 } // namespace message_center
128 129
129 #endif // CHROME_BROWSER_UI_VIEWS_MESSAGE_CENTER_WEB_NOTIFICATION_TRAY_H_ 130 #endif // CHROME_BROWSER_UI_VIEWS_MESSAGE_CENTER_WEB_NOTIFICATION_TRAY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698