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

Side by Side Diff: content/browser/mojo/mojo_app_connection_impl.cc

Issue 1549113002: Switch to standard integer types in content/browser/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 12 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/browser/message_port_service.cc ('k') | content/browser/mojo/mojo_application_host.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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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/browser/mojo/mojo_app_connection_impl.h" 5 #include "content/browser/mojo/mojo_app_connection_impl.h"
6 6
7 #include <stdint.h>
8
7 #include "base/bind.h" 9 #include "base/bind.h"
8 #include "content/browser/mojo/mojo_shell_context.h" 10 #include "content/browser/mojo/mojo_shell_context.h"
9 #include "mojo/shell/capability_filter.h" 11 #include "mojo/shell/capability_filter.h"
10 12
11 namespace content { 13 namespace content {
12 14
13 const char kBrowserMojoAppUrl[] = "system:content_browser"; 15 const char kBrowserMojoAppUrl[] = "system:content_browser";
14 16
15 namespace { 17 namespace {
16 void OnGotContentHandlerID(uint32_t content_handler_id) {} 18 void OnGotContentHandlerID(uint32_t content_handler_id) {}
(...skipping 18 matching lines...) Expand all
35 MojoAppConnectionImpl::~MojoAppConnectionImpl() { 37 MojoAppConnectionImpl::~MojoAppConnectionImpl() {
36 } 38 }
37 39
38 void MojoAppConnectionImpl::ConnectToService( 40 void MojoAppConnectionImpl::ConnectToService(
39 const std::string& service_name, 41 const std::string& service_name,
40 mojo::ScopedMessagePipeHandle handle) { 42 mojo::ScopedMessagePipeHandle handle) {
41 services_->ConnectToService(service_name, handle.Pass()); 43 services_->ConnectToService(service_name, handle.Pass());
42 } 44 }
43 45
44 } // namespace content 46 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/message_port_service.cc ('k') | content/browser/mojo/mojo_application_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698