Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "base/logging.h" | |
| 6 | |
| 7 bool IsFullScreenMode() { | |
|
rjkroege
2016/10/25 20:10:39
This can be refactored out of existence: rename fu
tonikitoo
2016/10/26 05:37:17
1st take done in https://codereview.chromium.org/2
| |
| 8 NOTIMPLEMENTED(); | |
| 9 // TODO(tonikitoo): Verify if mus has something that can be reused here: | |
| 10 // https://bugs.chromium.org/p/chromium/issues/detail?id=640390 | |
| 11 return false; | |
| 12 } | |
| OLD | NEW |