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

Side by Side Diff: ash/system/web_notification/web_notification.h

Issue 11229022: Move ash/system/web_notification message_center to ui/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase again. Created 8 years, 1 month 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
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef ASH_SYSTEM_WEB_NOTIFICATION_WEB_NOTIFICATION_H_
6 #define ASH_SYSTEM_WEB_NOTIFICATION_WEB_NOTIFICATION_H_
7
8 #include <string>
9
10 #include "base/string16.h"
11 #include "ui/gfx/image/image_skia.h"
12
13 namespace message_center {
14
15 struct WebNotification {
16 WebNotification();
17 virtual ~WebNotification();
18
19 std::string id;
20 string16 title;
21 string16 message;
22 string16 display_source;
23 std::string extension_id;
24 gfx::ImageSkia image;
25 bool is_read; // True if this has been seen in the message center
26 bool shown_as_popup; // True if this has been shown as a popup notification
27 };
28
29 } // namespace message_center
30
31 #endif // ASH_SYSTEM_WEB_NOTIFICATION_WEB_NOTIFICATION_H_
OLDNEW
« no previous file with comments | « ash/system/web_notification/popup_bubble.cc ('k') | ash/system/web_notification/web_notification.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698