Files
engine/runtime/platform_impl.cc
T

18 lines
383 B
C++
Raw Normal View History

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.
#include "flutter/runtime/platform_impl.h"
2014-10-23 11:15:41 -07:00
namespace blink {
2014-10-23 11:15:41 -07:00
PlatformImpl::PlatformImpl() {}
2014-10-23 11:15:41 -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
}
} // namespace blink