mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
37 lines
1.1 KiB
C++
37 lines
1.1 KiB
C++
// Copyright 2016 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_SERVICES_ACTIVITY_IOS_ACTIVITY_IMPL_H_
|
|
#define FLUTTER_SERVICES_ACTIVITY_IOS_ACTIVITY_IMPL_H_
|
|
|
|
#include "base/macros.h"
|
|
#include "mojo/public/cpp/bindings/strong_binding.h"
|
|
#include "flutter/services/activity/activity.mojom.h"
|
|
|
|
namespace sky {
|
|
namespace services {
|
|
namespace activity {
|
|
|
|
class ActivityImpl : public ::activity::Activity {
|
|
public:
|
|
explicit ActivityImpl(mojo::InterfaceRequest<::activity::Activity> request);
|
|
~ActivityImpl() override;
|
|
|
|
// From activity::Activity:
|
|
void StartActivity(::activity::IntentPtr intent) override;
|
|
void FinishCurrentActivity() override;
|
|
void SetTaskDescription(::activity::TaskDescriptionPtr description) override;
|
|
|
|
private:
|
|
mojo::StrongBinding<::activity::Activity> binding_;
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(ActivityImpl);
|
|
};
|
|
|
|
} // namespace activity
|
|
} // namespace services
|
|
} // namespace sky
|
|
|
|
#endif // FLUTTER_SERVICES_ACTIVITY_IOS_ACTIVITY_IMPL_H_
|