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

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

Issue 1109993002: Adds support for mojo apps to live in their own directory (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge to trunk and move filename_util to own dir Created 5 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 | « mojo/shell/BUILD.gn ('k') | mojo/shell/local_fetcher.cc » ('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 #ifndef MOJO_SHELL_LOCAL_FETCHER_H_ 5 #ifndef MOJO_SHELL_LOCAL_FETCHER_H_
6 #define MOJO_SHELL_LOCAL_FETCHER_H_ 6 #define MOJO_SHELL_LOCAL_FETCHER_H_
7 7
8 #include "base/files/file_path.h" 8 #include "base/files/file_path.h"
9 #include "mojo/services/network/public/interfaces/url_loader.mojom.h" 9 #include "mojo/services/network/public/interfaces/url_loader.mojom.h"
10 #include "mojo/shell/fetcher.h" 10 #include "mojo/shell/fetcher.h"
11 #include "url/gurl.h" 11 #include "url/gurl.h"
12 12
13 namespace mojo { 13 namespace mojo {
14 namespace shell { 14 namespace shell {
15 15
16 // Implements Fetcher for file:// URLs. 16 // Implements Fetcher for file:// URLs.
17 class LocalFetcher : public Fetcher { 17 class LocalFetcher : public Fetcher {
18 public: 18 public:
19 LocalFetcher(const GURL& url, 19 LocalFetcher(const GURL& url,
20 const GURL& url_without_query, 20 const GURL& url_without_query,
21 const FetchCallback& loader_callback); 21 const FetchCallback& loader_callback);
22 22
23 private: 23 private:
24 static base::FilePath UrlToFile(const GURL& url);
25
26 const GURL& GetURL() const override; 24 const GURL& GetURL() const override;
27 GURL GetRedirectURL() const override; 25 GURL GetRedirectURL() const override;
28 26
29 URLResponsePtr AsURLResponse(base::TaskRunner* task_runner, 27 URLResponsePtr AsURLResponse(base::TaskRunner* task_runner,
30 uint32_t skip) override; 28 uint32_t skip) override;
31 29
32 void AsPath( 30 void AsPath(
33 base::TaskRunner* task_runner, 31 base::TaskRunner* task_runner,
34 base::Callback<void(const base::FilePath&, bool)> callback) override; 32 base::Callback<void(const base::FilePath&, bool)> callback) override;
35 33
36 std::string MimeType() override; 34 std::string MimeType() override;
37 35
38 bool HasMojoMagic() override; 36 bool HasMojoMagic() override;
39 37
40 bool PeekFirstLine(std::string* line) override; 38 bool PeekFirstLine(std::string* line) override;
41 39
42 GURL url_; 40 GURL url_;
43 base::FilePath path_; 41 base::FilePath path_;
44 42
45 DISALLOW_COPY_AND_ASSIGN(LocalFetcher); 43 DISALLOW_COPY_AND_ASSIGN(LocalFetcher);
46 }; 44 };
47 45
48 } // namespace shell 46 } // namespace shell
49 } // namespace mojo 47 } // namespace mojo
50 48
51 #endif // MOJO_SHELL_LOCAL_FETCHER_H_ 49 #endif // MOJO_SHELL_LOCAL_FETCHER_H_
OLDNEW
« no previous file with comments | « mojo/shell/BUILD.gn ('k') | mojo/shell/local_fetcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698