mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
37 lines
906 B
C++
37 lines
906 B
C++
// Copyright 2015 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 "services/sky/runtime_flags.h"
|
|
|
|
#include "base/logging.h"
|
|
#include "mojo/public/cpp/application/application_impl.h"
|
|
|
|
namespace sky {
|
|
namespace {
|
|
|
|
bool initialized = false;
|
|
RuntimeFlags flags;
|
|
|
|
// Load the viewer in testing mode so we can dump pixels.
|
|
const char kTesting[] = "--testing";
|
|
|
|
// Instruct the DartVM to report type errors.
|
|
const char kEnableCheckedMode[] = "--enable-checked-mode";
|
|
|
|
} // namespace
|
|
|
|
void RuntimeFlags::Initialize(mojo::ApplicationImpl* app) {
|
|
DCHECK(!initialized);
|
|
flags.testing_ = app->HasArg(kTesting);
|
|
flags.enable_checked_mode_ = app->HasArg(kEnableCheckedMode);
|
|
initialized = true;
|
|
}
|
|
|
|
const RuntimeFlags& RuntimeFlags::Get() {
|
|
DCHECK(initialized);
|
|
return flags;
|
|
}
|
|
|
|
} // namespace sky
|