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

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

Issue 1352663002: Extract some stuff into PackageManager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 5 years, 3 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/package_manager.h ('k') | mojo/shell/test_package_manager.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef MOJO_SHELL_TEST_PACKAGE_MANAGER_H_
6 #define MOJO_SHELL_TEST_PACKAGE_MANAGER_H_
7
8 #include <map>
9 #include <string>
10
11 #include "mojo/shell/package_manager.h"
12
13 class GURL;
14
15 namespace mojo {
16 namespace shell {
17
18 // An implementation of PackageManager used by tests to support content handler
19 // registration for MIME types.
20 class TestPackageManager : public PackageManager {
21 public:
22 TestPackageManager();
23 virtual ~TestPackageManager();
24
25 void RegisterContentHandler(const std::string& mime_type,
26 const GURL& content_handler_url);
27
28 private:
29 using MimeTypeToURLMap = std::map<std::string, GURL>;
30
31 // Overridden from PackageManager:
32 void SetApplicationManager(ApplicationManager* manager) override;
33 GURL ResolveURL(const GURL& url) override;
34 void FetchRequest(
35 URLRequestPtr request,
36 const Fetcher::FetchCallback& loader_callback) override;
37 bool HandleWithContentHandler(Fetcher* fetcher,
38 const GURL& unresolved_url,
39 base::TaskRunner* task_runner,
40 URLResponsePtr* new_response,
41 GURL* content_handler_url,
42 std::string* qualifier) override;
43
44 MimeTypeToURLMap mime_type_to_url_;
45
46 DISALLOW_COPY_AND_ASSIGN(TestPackageManager);
47 };
48
49 } // namespace shell
50 } // namespace mojo
51
52 #endif // MOJO_SHELL_TEST_PACKAGE_MANAGER_H_
OLDNEW
« no previous file with comments | « mojo/shell/package_manager.h ('k') | mojo/shell/test_package_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698