| Index: content/browser/mime_registry_impl.h
|
| diff --git a/content/browser/mime_registry_impl.h b/content/browser/mime_registry_impl.h
|
| index 8adb70feb17c7caadbee2d9df0c2bd9cfdd223fd..6cdaadfa7449fab4959e2c0b3f0c766b6b6fd24f 100644
|
| --- a/content/browser/mime_registry_impl.h
|
| +++ b/content/browser/mime_registry_impl.h
|
| @@ -5,24 +5,21 @@
|
| #ifndef CONTENT_BROWSER_MIME_REGISTRY_IMPL_H_
|
| #define CONTENT_BROWSER_MIME_REGISTRY_IMPL_H_
|
|
|
| -#include "mojo/public/cpp/bindings/strong_binding.h"
|
| #include "third_party/WebKit/public/platform/mime_registry.mojom.h"
|
|
|
| namespace content {
|
|
|
| class MimeRegistryImpl : public blink::mojom::MimeRegistry {
|
| public:
|
| + MimeRegistryImpl();
|
| + ~MimeRegistryImpl() override;
|
| +
|
| static void Create(blink::mojom::MimeRegistryRequest request);
|
|
|
| private:
|
| - MimeRegistryImpl(blink::mojom::MimeRegistryRequest request);
|
| - ~MimeRegistryImpl() override;
|
| -
|
| void GetMimeTypeFromExtension(
|
| const mojo::String& extension,
|
| const GetMimeTypeFromExtensionCallback& callback) override;
|
| -
|
| - mojo::StrongBinding<blink::mojom::MimeRegistry> binding_;
|
| };
|
|
|
| } // namespace content
|
|
|