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

Unified 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: 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/ozone_stubs.cc
diff --git a/ui/base/idle/idle_android.cc b/chrome/browser/ui/ozone_stubs.cc
similarity index 54%
copy from ui/base/idle/idle_android.cc
copy to chrome/browser/ui/ozone_stubs.cc
index 43b27c019d36c176cb75d838e08659dd729d1f2d..b485ce63e7a7a4b873a683a0fd1e4f7ba535513d 100644
--- a/ui/base/idle/idle_android.cc
+++ b/chrome/browser/ui/ozone_stubs.cc
@@ -1,21 +1,21 @@
-// Copyright 2015 The Chromium Authors. All rights reserved.
+// Copyright (c) 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "ui/base/idle/idle.h"
-
#include "base/logging.h"
+#include "chrome/browser/ui/ozone_stubs.h"
namespace ui {
-void CalculateIdleTime(IdleTimeCallback notify) {
+bool GetCustomFramePrefDefault() {
NOTIMPLEMENTED();
- notify.Run(0);
+ return true;
}
-bool CheckIdleStateIsLocked() {
+} // namespace ui
+
+bool IsFullScreenMode() {
NOTIMPLEMENTED();
return false;
}
-} // namespace ui

Powered by Google App Engine
This is Rietveld 408576698