Adam Barth bb6d32b498 Factor runtime initialization into InitRuntime (flutter/engine#3009)
This makes the code easier to share between Fuchsia and stand-alone
Flutter.
2016-09-07 22:19:50 -07:00

18 lines
383 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 "flutter/runtime/platform_impl.h"
namespace blink {
PlatformImpl::PlatformImpl() {}
PlatformImpl::~PlatformImpl() {}
std::string PlatformImpl::defaultLocale() {
return "en-US";
}
} // namespace blink