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 #include "chrome/browser/chromeos/notifications/system_notification.h" | 5 #include "chrome/browser/chromeos/notifications/system_notification.h" |
6 | 6 |
7 #include "base/callback.h" | 7 #include "base/callback.h" |
8 #include "chrome/browser/browser_process.h" | 8 #include "chrome/browser/browser_process.h" |
9 #include "chrome/browser/chromeos/notifications/system_notification_factory.h" | 9 #include "chrome/browser/chromeos/notifications/system_notification_factory.h" |
10 #include "chrome/browser/notifications/notification.h" | 10 #include "chrome/browser/notifications/notification.h" |
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 | 134 |
135 std::string SystemNotification::Delegate::id() const { | 135 std::string SystemNotification::Delegate::id() const { |
136 return id_; | 136 return id_; |
137 } | 137 } |
138 | 138 |
139 content::RenderViewHost* | 139 content::RenderViewHost* |
140 SystemNotification::Delegate::GetRenderViewHost() const { | 140 SystemNotification::Delegate::GetRenderViewHost() const { |
141 return NULL; | 141 return NULL; |
142 } | 142 } |
143 | 143 |
| 144 SystemNotification::Delegate::~Delegate() {} |
| 145 |
144 } // namespace chromeos | 146 } // namespace chromeos |
OLD | NEW |