Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2016 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 "ui/base/idle/idle.h" | |
| 6 | |
| 7 #include "base/logging.h" | 5 #include "base/logging.h" |
| 6 #include "chrome/browser/ui/ozone_stubs.h" | |
| 8 | 7 |
| 9 namespace ui { | 8 namespace ui { |
| 10 | 9 |
| 11 void CalculateIdleTime(IdleTimeCallback notify) { | 10 bool GetCustomFramePrefDefault() { |
| 12 NOTIMPLEMENTED(); | 11 NOTIMPLEMENTED(); |
| 13 notify.Run(0); | 12 return true; |
| 14 } | 13 } |
| 15 | 14 |
| 16 bool CheckIdleStateIsLocked() { | 15 } // namespace ui |
| 16 | |
| 17 bool IsFullScreenMode() { | |
|
rjkroege
2016/10/11 18:49:47
this is weird. It should be in an anonymous block?
tonikitoo
2016/10/12 13:44:23
Without this stub implementation, I get this:
(..
| |
| 17 NOTIMPLEMENTED(); | 18 NOTIMPLEMENTED(); |
| 18 return false; | 19 return false; |
| 19 } | 20 } |
| 20 | 21 |
| 21 } // namespace ui | |
| OLD | NEW |