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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 SystemNotification::Delegate::Delegate(const std::string& id) | 72 SystemNotification::Delegate::Delegate(const std::string& id) |
73 : id_(id) { | 73 : id_(id) { |
74 NOTIMPLEMENTED(); | 74 NOTIMPLEMENTED(); |
75 } | 75 } |
76 | 76 |
77 std::string SystemNotification::Delegate::id() const { | 77 std::string SystemNotification::Delegate::id() const { |
78 NOTIMPLEMENTED(); | 78 NOTIMPLEMENTED(); |
79 return id_; | 79 return id_; |
80 } | 80 } |
81 | 81 |
82 //////////////////////////////////////////////////////////////////////////////// | |
83 // XInputHierarchyChangedEventListener | |
84 | |
85 // static | |
86 XInputHierarchyChangedEventListener* | |
87 XInputHierarchyChangedEventListener::GetInstance() { | |
88 NOTIMPLEMENTED(); | |
89 return new XInputHierarchyChangedEventListener(); | |
90 } | |
91 | |
92 XInputHierarchyChangedEventListener::XInputHierarchyChangedEventListener() | |
93 : stopped_(false), | |
94 xiopcode_(0) { | |
95 NOTIMPLEMENTED(); | |
96 } | |
97 | |
98 XInputHierarchyChangedEventListener::~XInputHierarchyChangedEventListener() { | |
99 NOTIMPLEMENTED(); | |
100 } | |
101 | |
102 void XInputHierarchyChangedEventListener::Stop() { | |
103 NOTIMPLEMENTED(); | |
104 } | |
105 | |
106 base::EventStatus XInputHierarchyChangedEventListener::WillProcessEvent( | |
107 const base::NativeEvent& event) { | |
108 NOTIMPLEMENTED(); | |
109 return base::EVENT_HANDLED; | |
110 } | |
111 | |
112 void XInputHierarchyChangedEventListener::DidProcessEvent( | |
113 const base::NativeEvent& event) { | |
114 NOTIMPLEMENTED(); | |
115 } | |
116 | |
117 bool XInputHierarchyChangedEventListener::ProcessedXEvent(XEvent* xevent) { | |
118 NOTIMPLEMENTED(); | |
119 return true; | |
120 } | |
121 | |
122 ////////////////////////////////////////////////////////////////////////////// | 82 ////////////////////////////////////////////////////////////////////////////// |
123 // ScreenLocker | 83 // ScreenLocker |
124 | 84 |
125 ScreenLocker::ScreenLocker(const chromeos::User& user) : user_(user) { | 85 ScreenLocker::ScreenLocker(const chromeos::User& user) : user_(user) { |
126 NOTIMPLEMENTED(); | 86 NOTIMPLEMENTED(); |
127 } | 87 } |
128 | 88 |
129 ScreenLocker::~ScreenLocker() { | 89 ScreenLocker::~ScreenLocker() { |
130 NOTIMPLEMENTED(); | 90 NOTIMPLEMENTED(); |
131 } | 91 } |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
196 // static | 156 // static |
197 void ScreenLocker::InitClass() { | 157 void ScreenLocker::InitClass() { |
198 NOTIMPLEMENTED(); | 158 NOTIMPLEMENTED(); |
199 } | 159 } |
200 | 160 |
201 void ScreenLocker::ScreenLockReady() { | 161 void ScreenLocker::ScreenLockReady() { |
202 NOTIMPLEMENTED(); | 162 NOTIMPLEMENTED(); |
203 } | 163 } |
204 | 164 |
205 } // namespace chromeos | 165 } // namespace chromeos |
OLD | NEW |