blob: 0c36d108e0d2f8b0ded9a7793b2ca17b8b83bdfc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
// 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 "base/at_exit.h"
#include "base/command_line.h"
#include "base/macros.h"
#include "mojo/shell/public/cpp/connection.h"
#include "mojo/shell/public/cpp/connector.h"
#include "mojo/shell/public/cpp/shell_client.h"
#include "mojo/shell/runner/child/test_native_main.h"
#include "mojo/shell/runner/init.h"
#include "mojo/shell/tests/application_manager_apptests.mojom.h"
using mojo::shell::test::mojom::CreateInstanceForHandleTestPtr;
namespace {
class TargetApplicationDelegate : public mojo::ShellClient {
public:
TargetApplicationDelegate() {}
~TargetApplicationDelegate() override {}
private:
// mojo::ShellClient:
void Initialize(mojo::Connector* connector, const std::string& url,
uint32_t id, uint32_t user_id) override {
CreateInstanceForHandleTestPtr service;
connector->ConnectToInterface("mojo:mojo_shell_apptests", &service);
service->SetTargetID(id);
}
DISALLOW_COPY_AND_ASSIGN(TargetApplicationDelegate);
};
} // namespace
int main(int argc, char** argv) {
base::AtExitManager at_exit;
base::CommandLine::Init(argc, argv);
mojo::shell::InitializeLogging();
TargetApplicationDelegate delegate;
return mojo::shell::TestNativeMain(&delegate);
}
|