Bug 1378011 (part 1) - Remove nsToken.h, because it is unused. r=mrbkap.

This commit is contained in:
Nicholas Nethercote 2017-07-04 11:25:09 +10:00
parent c649ebbc0f
commit 1c45fc829f
4 changed files with 0 additions and 22 deletions

View File

@ -23,7 +23,6 @@
#include "nsIContentViewer.h"
#include "mozilla/dom/NodeInfo.h"
#include "mozilla/dom/ScriptLoader.h"
#include "nsToken.h"
#include "nsIAppShell.h"
#include "nsCRT.h"
#include "prtime.h"

View File

@ -7,7 +7,6 @@
#include "nsIAtom.h"
#include "CParserContext.h"
#include "nsToken.h"
#include "prenv.h"
#include "nsIHTMLContentSink.h"
#include "nsHTMLTokenizer.h"

View File

@ -31,7 +31,6 @@ EXPORTS += [
'nsParserCIID.h',
'nsParserConstants.h',
'nsScannerString.h',
'nsToken.h',
]
UNIFIED_SOURCES += [

View File

@ -1,19 +0,0 @@
/* -*- 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 CTOKEN__
#define CTOKEN__
enum eHTMLTokenTypes {
eToken_unknown=0,
eToken_start=1, eToken_end, eToken_comment, eToken_entity,
eToken_whitespace, eToken_newline, eToken_text, eToken_attribute,
eToken_instruction, eToken_cdatasection, eToken_doctypeDecl, eToken_markupDecl,
eToken_last //make sure this stays the last token...
};
#endif