Files
engine/runtime/platform_impl.h
T

28 lines
656 B
C++
Raw Normal View History

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.
#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"
#include "lib/fxl/macros.h"
2014-10-23 11:15:41 -07:00
namespace blink {
2014-10-23 11:15:41 -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();
~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:
FXL_DISALLOW_COPY_AND_ASSIGN(PlatformImpl);
2014-10-23 11:15:41 -07:00
};
} // namespace blink
2014-10-23 11:15:41 -07:00
#endif // FLUTTER_RUNTIME_PLATFORM_IMPL_H_