OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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_NOTIFICATIONS_NOTIFICATION_H_ | 5 #ifndef CHROME_BROWSER_NOTIFICATIONS_NOTIFICATION_H_ |
6 #define CHROME_BROWSER_NOTIFICATIONS_NOTIFICATION_H_ | 6 #define CHROME_BROWSER_NOTIFICATIONS_NOTIFICATION_H_ |
7 #pragma once | |
8 | 7 |
9 #include <string> | 8 #include <string> |
10 | 9 |
11 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
12 #include "base/string16.h" | 11 #include "base/string16.h" |
13 #include "chrome/browser/notifications/notification_delegate.h" | 12 #include "chrome/browser/notifications/notification_delegate.h" |
14 #include "googleurl/src/gurl.h" | 13 #include "googleurl/src/gurl.h" |
15 #include "third_party/WebKit/Source/WebKit/chromium/public/WebTextDirection.h" | 14 #include "third_party/WebKit/Source/WebKit/chromium/public/WebTextDirection.h" |
16 #include "ui/gfx/image/image_skia.h" | 15 #include "ui/gfx/image/image_skia.h" |
17 | 16 |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 | 120 |
122 // The replace ID for the notification. | 121 // The replace ID for the notification. |
123 string16 replace_id_; | 122 string16 replace_id_; |
124 | 123 |
125 // A proxy object that allows access back to the JavaScript object that | 124 // A proxy object that allows access back to the JavaScript object that |
126 // represents the notification, for firing events. | 125 // represents the notification, for firing events. |
127 scoped_refptr<NotificationDelegate> delegate_; | 126 scoped_refptr<NotificationDelegate> delegate_; |
128 }; | 127 }; |
129 | 128 |
130 #endif // CHROME_BROWSER_NOTIFICATIONS_NOTIFICATION_H_ | 129 #endif // CHROME_BROWSER_NOTIFICATIONS_NOTIFICATION_H_ |
OLD | NEW |