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

Unified Diff: mojo/shell/local_fetcher.h

Issue 1274433003: Add GetMimeTypeFromFile to Mojo's network service. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix string usage and NativeApplicationLoaderTest. Created 5 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « mojo/shell/application_manager.cc ('k') | mojo/shell/local_fetcher.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/shell/local_fetcher.h
diff --git a/mojo/shell/local_fetcher.h b/mojo/shell/local_fetcher.h
index cd25c88d071b4661d89bf77e82ff6b93165f2d36..53b598fab49b705b16760409111df1a0f3263799 100644
--- a/mojo/shell/local_fetcher.h
+++ b/mojo/shell/local_fetcher.h
@@ -5,21 +5,28 @@
#ifndef MOJO_SHELL_LOCAL_FETCHER_H_
#define MOJO_SHELL_LOCAL_FETCHER_H_
+#include <string>
+
#include "base/files/file_path.h"
-#include "mojo/services/network/public/interfaces/url_loader.mojom.h"
#include "mojo/shell/fetcher.h"
#include "url/gurl.h"
namespace mojo {
+
+class NetworkService;
+
namespace shell {
// Implements Fetcher for file:// URLs.
class LocalFetcher : public Fetcher {
public:
- LocalFetcher(const GURL& url,
+ LocalFetcher(NetworkService* network_service,
+ const GURL& url,
const GURL& url_without_query,
const FetchCallback& loader_callback);
+ void GetMimeTypeFromFileCallback(const mojo::String& mime_type);
+
private:
const GURL& GetURL() const override;
GURL GetRedirectURL() const override;
@@ -40,11 +47,13 @@ class LocalFetcher : public Fetcher {
GURL url_;
base::FilePath path_;
+ std::string mime_type_;
DISALLOW_COPY_AND_ASSIGN(LocalFetcher);
};
} // namespace shell
+
} // namespace mojo
#endif // MOJO_SHELL_LOCAL_FETCHER_H_
« no previous file with comments | « mojo/shell/application_manager.cc ('k') | mojo/shell/local_fetcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698