| 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 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 // SystemNotification::Delegate | 129 // SystemNotification::Delegate |
| 130 | 130 |
| 131 SystemNotification::Delegate::Delegate(const std::string& id) | 131 SystemNotification::Delegate::Delegate(const std::string& id) |
| 132 : id_(id) { | 132 : id_(id) { |
| 133 } | 133 } |
| 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* |
| 140 SystemNotification::Delegate::GetRenderViewHost() const { |
| 141 return NULL; |
| 142 } |
| 143 |
| 139 } // namespace chromeos | 144 } // namespace chromeos |
| OLD | NEW |