2015-07-14 00:21:34 -07:00
|
|
|
// Copyright 2015 The Chromium Authors. All rights reserved.
|
2014-10-23 11:15:41 -07:00
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
2016-09-07 22:19:50 -07:00
|
|
|
#include "flutter/runtime/platform_impl.h"
|
2014-10-23 11:15:41 -07:00
|
|
|
|
2016-09-07 22:19:50 -07:00
|
|
|
namespace blink {
|
2014-10-23 11:15:41 -07:00
|
|
|
|
2016-08-04 19:25:04 -07:00
|
|
|
PlatformImpl::PlatformImpl() {}
|
2014-10-23 11:15:41 -07:00
|
|
|
|
2016-08-04 19:25:04 -07:00
|
|
|
PlatformImpl::~PlatformImpl() {}
|
2014-10-23 11:15:41 -07:00
|
|
|
|
2016-08-03 09:14:34 -07:00
|
|
|
std::string PlatformImpl::defaultLocale() {
|
|
|
|
|
return "en-US";
|
2014-10-23 11:15:41 -07:00
|
|
|
}
|
|
|
|
|
|
2016-09-07 22:19:50 -07:00
|
|
|
} // namespace blink
|