mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
In preperation for removing the Client annotation from ServiceProvider this passes a second parameter of type ServiceProvider in the shell and application Connect calls. In this patch the type signatures are updated but the second parameter is basically unused. The intention is that the first parameter |services| will be used for the connecting application to request services from the connected application (as it does currently) and the second parameter |exported_services| be used for the connecting application to provide services to the connected application. We have very few services exported in the second direction today - I'll update them to use the second parameter in a follow-up patch. R=darin@chromium.org Review URL: https://codereview.chromium.org/845593003
60 lines
1.7 KiB
C++
60 lines
1.7 KiB
C++
// 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 SKY_VIEWER_INTERNALS_H_
|
|
#define SKY_VIEWER_INTERNALS_H_
|
|
|
|
#include "base/memory/weak_ptr.h"
|
|
#include "gin/handle.h"
|
|
#include "gin/object_template_builder.h"
|
|
#include "gin/wrappable.h"
|
|
#include "mojo/public/interfaces/application/shell.mojom.h"
|
|
#include "sky/services/testing/test_harness.mojom.h"
|
|
|
|
namespace sky {
|
|
class DocumentView;
|
|
|
|
class Internals : public gin::Wrappable<Internals>,
|
|
public mojo::Shell {
|
|
public:
|
|
static gin::WrapperInfo kWrapperInfo;
|
|
static gin::Handle<Internals> Create(v8::Isolate*, DocumentView*);
|
|
|
|
virtual ~Internals();
|
|
|
|
virtual gin::ObjectTemplateBuilder GetObjectTemplateBuilder(
|
|
v8::Isolate* isolate) override;
|
|
|
|
private:
|
|
explicit Internals(DocumentView* document_view);
|
|
|
|
// mojo::Shell method:
|
|
void ConnectToApplication(
|
|
const mojo::String& application_url,
|
|
mojo::InterfaceRequest<mojo::ServiceProvider> services,
|
|
mojo::ServiceProviderPtr exposed_services) override;
|
|
|
|
mojo::Handle PassShellProxyHandle();
|
|
std::string RenderTreeAsText();
|
|
std::string ContentAsText();
|
|
void NotifyTestComplete(const std::string& test_result);
|
|
|
|
mojo::Handle ConnectToEmbedderService(const std::string& interface_name);
|
|
|
|
mojo::Handle ConnectToService(
|
|
const std::string& application_url, const std::string& interface_name);
|
|
|
|
void pauseAnimations(double pauseTime);
|
|
|
|
base::WeakPtr<DocumentView> document_view_;
|
|
mojo::Binding<mojo::Shell> shell_binding_;
|
|
TestHarnessPtr test_harness_;
|
|
|
|
MOJO_DISALLOW_COPY_AND_ASSIGN(Internals);
|
|
};
|
|
|
|
} // namespace sky
|
|
|
|
#endif // SKY_VIEWER_INTERNALS_H_
|