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

Side by Side Diff: mojo/shell/test_package_manager.cc

Issue 1543603002: Switch to standard integer types in mojo/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix 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 | « mojo/shell/test_package_manager.h ('k') | no next file » | 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 <stdint.h>
6
5 #include "mojo/shell/test_package_manager.h" 7 #include "mojo/shell/test_package_manager.h"
6 8
7 namespace mojo { 9 namespace mojo {
8 namespace shell { 10 namespace shell {
9 namespace test { 11 namespace test {
10 12
11 TestPackageManager::TestPackageManager() {} 13 TestPackageManager::TestPackageManager() {}
12 TestPackageManager::~TestPackageManager() {} 14 TestPackageManager::~TestPackageManager() {}
13 15
14 void TestPackageManager::SetApplicationManager(ApplicationManager* manager) {} 16 void TestPackageManager::SetApplicationManager(ApplicationManager* manager) {}
15 void TestPackageManager::FetchRequest( 17 void TestPackageManager::FetchRequest(
16 URLRequestPtr request, 18 URLRequestPtr request,
17 const Fetcher::FetchCallback& loader_callback) {} 19 const Fetcher::FetchCallback& loader_callback) {}
18 uint32_t TestPackageManager::HandleWithContentHandler( 20 uint32_t TestPackageManager::HandleWithContentHandler(
19 Fetcher* fetcher, 21 Fetcher* fetcher,
20 const Identity& source, 22 const Identity& source,
21 const GURL& target_url, 23 const GURL& target_url,
22 const CapabilityFilter& target_filter, 24 const CapabilityFilter& target_filter,
23 InterfaceRequest<Application>* application_request) { 25 InterfaceRequest<Application>* application_request) {
24 return 0; 26 return 0;
25 } 27 }
26 28
27 } // namespace test 29 } // namespace test
28 } // namespace shell 30 } // namespace shell
29 } // namespace mojo 31 } // namespace mojo
OLDNEW
« no previous file with comments | « mojo/shell/test_package_manager.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698