2015-05-03 12:32:37 -07: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 12:28:26 -07: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
|
|
|
|
|
|
|
|
#include "nsAString.h"
|
|
|
|
|
|
|
|
class nsIMIMEHeaderParam;
|
|
|
|
|
|
|
|
class nsContentTypeParser {
|
|
|
|
public:
|
2014-09-01 17:49:25 -07:00
|
|
|
explicit nsContentTypeParser(const nsAString& aString);
|
2013-08-21 12:28:26 -07:00
|
|
|
~nsContentTypeParser();
|
|
|
|
|
|
|
|
nsresult GetParameter(const char* aParameterName, nsAString& aResult);
|
2015-12-02 23:58:58 -08:00
|
|
|
nsresult GetType(nsAString& aResult);
|
2013-08-21 12:28:26 -07:00
|
|
|
|
|
|
|
private:
|
|
|
|
NS_ConvertUTF16toUTF8 mString;
|
|
|
|
nsIMIMEHeaderParam* mService;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|