| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/login/screen_locker.h" | 5 #include "chrome/browser/chromeos/login/screen_locker.h" |
| 6 #include "chrome/browser/chromeos/login/user.h" | 6 #include "chrome/browser/chromeos/login/user.h" |
| 7 #include "chrome/browser/chromeos/notifications/system_notification.h" | 7 #include "chrome/browser/chromeos/notifications/system_notification.h" |
| 8 #include "chrome/browser/chromeos/xinput_hierarchy_changed_event_listener.h" | 8 #include "chrome/browser/chromeos/xinput_hierarchy_changed_event_listener.h" |
| 9 #include "chrome/browser/ui/views/frame/browser_view.h" | 9 #include "chrome/browser/ui/views/frame/browser_view.h" |
| 10 #include "chrome/browser/ui/views/frame/browser_non_client_frame_view.h" | 10 #include "chrome/browser/ui/views/frame/browser_non_client_frame_view.h" |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 urgent_(false) { | 44 urgent_(false) { |
| 45 NOTIMPLEMENTED(); | 45 NOTIMPLEMENTED(); |
| 46 } | 46 } |
| 47 | 47 |
| 48 SystemNotification::~SystemNotification() { | 48 SystemNotification::~SystemNotification() { |
| 49 } | 49 } |
| 50 | 50 |
| 51 void SystemNotification::Show(const string16& message, | 51 void SystemNotification::Show(const string16& message, |
| 52 bool urgent, | 52 bool urgent, |
| 53 bool sticky) { | 53 bool sticky) { |
| 54 NOTIMPLEMENTED(); | 54 NOTIMPLEMENTED() << " " << message; |
| 55 } | 55 } |
| 56 | 56 |
| 57 void SystemNotification::Show(const string16& message, | 57 void SystemNotification::Show(const string16& message, |
| 58 const string16& link, | 58 const string16& link, |
| 59 const MessageCallback& callback, | 59 const MessageCallback& callback, |
| 60 bool urgent, | 60 bool urgent, |
| 61 bool sticky) { | 61 bool sticky) { |
| 62 NOTIMPLEMENTED(); | 62 NOTIMPLEMENTED(); |
| 63 } | 63 } |
| 64 | 64 |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 // static | 156 // static |
| 157 void ScreenLocker::InitClass() { | 157 void ScreenLocker::InitClass() { |
| 158 NOTIMPLEMENTED(); | 158 NOTIMPLEMENTED(); |
| 159 } | 159 } |
| 160 | 160 |
| 161 void ScreenLocker::ScreenLockReady() { | 161 void ScreenLocker::ScreenLockReady() { |
| 162 NOTIMPLEMENTED(); | 162 NOTIMPLEMENTED(); |
| 163 } | 163 } |
| 164 | 164 |
| 165 } // namespace chromeos | 165 } // namespace chromeos |
| OLD | NEW |