2014-10-23 11:15:41 -07:00
|
|
|
// Copyright 2014 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.
|
|
|
|
|
|
2016-09-07 22:19:50 -07:00
|
|
|
#ifndef FLUTTER_RUNTIME_PLATFORM_IMPL_H_
|
|
|
|
|
#define FLUTTER_RUNTIME_PLATFORM_IMPL_H_
|
2014-10-23 11:15:41 -07:00
|
|
|
|
2016-08-09 12:48:29 -07:00
|
|
|
#include "flutter/sky/engine/public/platform/Platform.h"
|
2017-09-12 15:36:20 -07:00
|
|
|
#include "lib/fxl/macros.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-09-07 22:19:50 -07:00
|
|
|
class PlatformImpl : public Platform {
|
2014-10-23 11:15:41 -07:00
|
|
|
public:
|
2015-07-13 23:39:48 -07:00
|
|
|
explicit PlatformImpl();
|
2015-02-01 13:40:42 -08:00
|
|
|
~PlatformImpl() override;
|
2014-10-23 11:15:41 -07:00
|
|
|
|
|
|
|
|
// blink::Platform methods:
|
2016-08-03 09:14:34 -07:00
|
|
|
std::string defaultLocale() override;
|
2015-10-09 06:37:57 -07:00
|
|
|
|
2014-10-23 11:15:41 -07:00
|
|
|
private:
|
2017-09-11 15:58:48 -07:00
|
|
|
FXL_DISALLOW_COPY_AND_ASSIGN(PlatformImpl);
|
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-09-07 22:19:50 -07:00
|
|
|
#endif // FLUTTER_RUNTIME_PLATFORM_IMPL_H_
|