blob: bf92f64886f4d65ca69bf30a0982ec4282d6e36f (
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
|
// 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.
#include "content/app/mojo/mojo_init.h"
#include "base/lazy_instance.h"
#include "base/memory/scoped_ptr.h"
#include "ipc/ipc_channel.h"
#include "third_party/mojo/src/mojo/edk/embedder/configuration.h"
#include "third_party/mojo/src/mojo/edk/embedder/embedder.h"
#include "third_party/mojo/src/mojo/edk/embedder/simple_platform_support.h"
namespace content {
namespace {
class MojoInitializer {
public:
MojoInitializer() {
mojo::embedder::GetConfiguration()->max_message_num_bytes =
IPC::Channel::kMaximumMessageSize;
mojo::embedder::Init(scoped_ptr<mojo::embedder::PlatformSupport>(
new mojo::embedder::SimplePlatformSupport()));
}
};
base::LazyInstance<MojoInitializer>::Leaky mojo_initializer;
} // namespace
void InitializeMojo() {
mojo_initializer.Get();
}
} // namespace content
|