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

Side by Side Diff: components/resource_provider/resource_provider_apptest.cc

Issue 1565343003: Move mojo/application/public -> mojo/shell/public (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@fetcher
Patch Set: . Created 4 years, 11 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 | « components/resource_provider/resource_provider_app.cc ('k') | components/web_view/BUILD.gn » ('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 <stddef.h> 5 #include <stddef.h>
6 #include <stdint.h> 6 #include <stdint.h>
7 7
8 #include "base/containers/scoped_ptr_hash_map.h" 8 #include "base/containers/scoped_ptr_hash_map.h"
9 #include "base/files/file.h" 9 #include "base/files/file.h"
10 #include "base/macros.h" 10 #include "base/macros.h"
11 #include "base/run_loop.h" 11 #include "base/run_loop.h"
12 #include "components/resource_provider/public/cpp/resource_loader.h" 12 #include "components/resource_provider/public/cpp/resource_loader.h"
13 #include "components/resource_provider/public/interfaces/resource_provider.mojom .h" 13 #include "components/resource_provider/public/interfaces/resource_provider.mojom .h"
14 #include "mojo/application/public/cpp/application_delegate.h"
15 #include "mojo/application/public/cpp/application_impl.h"
16 #include "mojo/application/public/cpp/application_test_base.h"
17 #include "mojo/application/public/cpp/service_provider_impl.h"
18 #include "mojo/common/common_type_converters.h" 14 #include "mojo/common/common_type_converters.h"
19 #include "mojo/platform_handle/platform_handle_functions.h" 15 #include "mojo/platform_handle/platform_handle_functions.h"
20 #include "mojo/public/cpp/bindings/array.h" 16 #include "mojo/public/cpp/bindings/array.h"
21 #include "mojo/public/cpp/system/macros.h" 17 #include "mojo/public/cpp/system/macros.h"
18 #include "mojo/shell/public/cpp/application_delegate.h"
19 #include "mojo/shell/public/cpp/application_impl.h"
20 #include "mojo/shell/public/cpp/application_test_base.h"
21 #include "mojo/shell/public/cpp/service_provider_impl.h"
22 22
23 namespace resource_provider { 23 namespace resource_provider {
24 namespace { 24 namespace {
25 25
26 std::string ReadFile(base::File* file) { 26 std::string ReadFile(base::File* file) {
27 const size_t kBufferSize = 1 << 16; 27 const size_t kBufferSize = 1 << 16;
28 scoped_ptr<char[]> buffer(new char[kBufferSize]); 28 scoped_ptr<char[]> buffer(new char[kBufferSize]);
29 const int read = file->ReadAtCurrentPos(buffer.get(), kBufferSize); 29 const int read = file->ReadAtCurrentPos(buffer.get(), kBufferSize);
30 if (read == -1) 30 if (read == -1)
31 return std::string(); 31 return std::string();
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 GetResources(SetWithStrings("sample", "dir/sample2"))); 90 GetResources(SetWithStrings("sample", "dir/sample2")));
91 ASSERT_TRUE(results.count("sample") > 0u); 91 ASSERT_TRUE(results.count("sample") > 0u);
92 EXPECT_EQ("test data\n", results["sample"]); 92 EXPECT_EQ("test data\n", results["sample"]);
93 93
94 ASSERT_TRUE(results.count("dir/sample2") > 0u); 94 ASSERT_TRUE(results.count("dir/sample2") > 0u);
95 EXPECT_EQ("xxyy\n", results["dir/sample2"]); 95 EXPECT_EQ("xxyy\n", results["dir/sample2"]);
96 } 96 }
97 97
98 } // namespace 98 } // namespace
99 } // namespace resource_provider 99 } // namespace resource_provider
OLDNEW
« no previous file with comments | « components/resource_provider/resource_provider_app.cc ('k') | components/web_view/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698