Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2263)

Side by Side Diff: content/app/mojo/mojo_init.cc

Issue 1874903002: Convert //content from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix indent Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « content/app/content_main_runner.cc ('k') | content/gpu/gpu_child_thread.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/app/mojo/mojo_init.h" 5 #include "content/app/mojo/mojo_init.h"
6 6
7 #include <memory>
8
7 #include "base/command_line.h" 9 #include "base/command_line.h"
8 #include "base/lazy_instance.h" 10 #include "base/lazy_instance.h"
9 #include "base/memory/scoped_ptr.h"
10 #include "content/public/common/content_switches.h" 11 #include "content/public/common/content_switches.h"
11 #include "ipc/ipc_channel.h" 12 #include "ipc/ipc_channel.h"
12 #include "mojo/edk/embedder/embedder.h" 13 #include "mojo/edk/embedder/embedder.h"
13 14
14 namespace content { 15 namespace content {
15 16
16 namespace { 17 namespace {
17 18
18 class MojoInitializer { 19 class MojoInitializer {
19 public: 20 public:
20 MojoInitializer() { 21 MojoInitializer() {
21 mojo::edk::SetMaxMessageSize(IPC::Channel::kMaximumMessageSize); 22 mojo::edk::SetMaxMessageSize(IPC::Channel::kMaximumMessageSize);
22 mojo::edk::Init(); 23 mojo::edk::Init();
23 } 24 }
24 }; 25 };
25 26
26 base::LazyInstance<MojoInitializer>::Leaky mojo_initializer; 27 base::LazyInstance<MojoInitializer>::Leaky mojo_initializer;
27 28
28 } // namespace 29 } // namespace
29 30
30 void InitializeMojo() { 31 void InitializeMojo() {
31 mojo_initializer.Get(); 32 mojo_initializer.Get();
32 } 33 }
33 34
34 } // namespace content 35 } // namespace content
OLDNEW
« no previous file with comments | « content/app/content_main_runner.cc ('k') | content/gpu/gpu_child_thread.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698