flutter_flutter/sky/shell/ui/platform_impl.cc
Adam Barth f8d80c4617 Finish removing //flutter/tonic (#2917)
This pulled a refactoring of how we keep track of the primary threads.
2016-08-12 12:05:48 -07:00

22 lines
462 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/sky/shell/ui/platform_impl.h"
#include "flutter/sky/shell/shell.h"
namespace sky {
namespace shell {
PlatformImpl::PlatformImpl() {}
PlatformImpl::~PlatformImpl() {}
std::string PlatformImpl::defaultLocale() {
return "en-US";
}
} // namespace shell
} // namespace sky