Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(139)

Side by Side Diff: chrome/browser/ui/ozone_stubs.cc

Issue 2408803002: Make it possible to launch chrome --mash with ozone_platform={wayland|x11}, chromeos=0 (Closed)
Patch Set: Make it possible to launch chrome --mash with ozone_platform={wayland|x11}, chromeos=0 Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698