blob: 1365c7e5c86e5937df7f51e8ec78446ade990ecb [file] [log] [blame]
// Copyright 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 "chrome/browser/fullscreen.h"
#include "ui/aura/env.h"
bool IsFullScreenMode(int64_t display_id) {
if (aura::Env::GetInstance()->mode() == aura::Env::Mode::MUS) {
// TODO: http://crbug.com/640390.
NOTIMPLEMENTED();
return false;
}
NOTREACHED() << "For Ozone builds, only --mash launch is supported for now.";
return false;
}