2015-05-03 22:32:37 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2013-08-21 23:28:26 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#ifndef nsContentTypeParser_h
|
|
|
|
#define nsContentTypeParser_h
|
|
|
|
|
2018-08-12 01:26:49 +03:00
|
|
|
#include "nsString.h"
|
2013-08-21 23:28:26 +04:00
|
|
|
|
2018-08-07 18:29:50 +03:00
|
|
|
class nsContentTypeParser
|
|
|
|
{
|
2013-08-21 23:28:26 +04:00
|
|
|
public:
|
2014-09-02 04:49:25 +04:00
|
|
|
explicit nsContentTypeParser(const nsAString& aString);
|
2013-08-21 23:28:26 +04:00
|
|
|
|
2016-10-04 08:19:15 +03:00
|
|
|
nsresult GetParameter(const char* aParameterName, nsAString& aResult) const;
|
|
|
|
nsresult GetType(nsAString& aResult) const;
|
2013-08-21 23:28:26 +04:00
|
|
|
|
|
|
|
private:
|
|
|
|
NS_ConvertUTF16toUTF8 mString;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|