gecko-dev/editor/libeditor/InternetCiter.h
Masayuki Nakano 8245258aa0 Bug 1264876 - Remove StripCites() from nsIEditorMailSupport r=m_kato
nsIEditorMailSupport::StripCites() is used only by QA addon of Seamonkey.
So, this is not necessary API now.  This patch removes it and removes its
helper classes in InternetCiter.

MozReview-Commit-ID: 4Esl3GXzo0U

--HG--
extra : rebase_source : 8f5fa85b18613726bfa7e21e5a6312cbd42af7c2
2018-07-19 16:55:31 +09:00

32 lines
895 B
C++

/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* 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 InternetCiter_h
#define InternetCiter_h
#include "nscore.h"
#include "nsStringFwd.h"
namespace mozilla {
/**
* Mail citations using standard Internet style.
*/
class InternetCiter final
{
public:
static nsresult GetCiteString(const nsAString& aInString,
nsAString& aOutString);
static nsresult Rewrap(const nsAString& aInString,
uint32_t aWrapCol, uint32_t aFirstLineOffset,
bool aRespectNewlines,
nsAString& aOutString);
};
} // namespace mozilla
#endif // #ifndef InternetCiter_h