Shutdown RenderWidgetHost owned by RenderFrameHost when destroying the RenderFrameHost.
[chromium-blink-merge.git] / mojo / shell / local_fetcher.h
blob52ad9da3e1352542ccc6f4052b8b871be5d0c0b6
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.
5 #ifndef MOJO_SHELL_LOCAL_FETCHER_H_
6 #define MOJO_SHELL_LOCAL_FETCHER_H_
8 #include "base/files/file_path.h"
9 #include "mojo/services/network/public/interfaces/url_loader.mojom.h"
10 #include "mojo/shell/fetcher.h"
11 #include "url/gurl.h"
13 namespace mojo {
14 namespace shell {
16 // Implements Fetcher for file:// URLs.
17 class LocalFetcher : public Fetcher {
18 public:
19 LocalFetcher(const GURL& url,
20 const GURL& url_without_query,
21 const FetchCallback& loader_callback);
23 private:
24 const GURL& GetURL() const override;
25 GURL GetRedirectURL() const override;
27 URLResponsePtr AsURLResponse(base::TaskRunner* task_runner,
28 uint32_t skip) override;
30 void AsPath(
31 base::TaskRunner* task_runner,
32 base::Callback<void(const base::FilePath&, bool)> callback) override;
34 std::string MimeType() override;
36 bool HasMojoMagic() override;
38 bool PeekFirstLine(std::string* line) override;
40 GURL url_;
41 base::FilePath path_;
43 DISALLOW_COPY_AND_ASSIGN(LocalFetcher);
46 } // namespace shell
47 } // namespace mojo
49 #endif // MOJO_SHELL_LOCAL_FETCHER_H_