зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1504131 - part 3: Remove editor/libeditor/HTMLEditorObjectResizerUtils.h r=m_kato
Now, the header file is not necessary. Differential Revision: https://phabricator.services.mozilla.com/D10870 --HG-- extra : moz-landing-system : lando
This commit is contained in:
Родитель
dbc466a1f7
Коммит
93bb048158
|
@ -7,7 +7,6 @@
|
|||
#include <math.h>
|
||||
|
||||
#include "HTMLEditorEventListener.h"
|
||||
#include "HTMLEditorObjectResizerUtils.h"
|
||||
#include "HTMLEditRules.h"
|
||||
#include "HTMLEditUtils.h"
|
||||
#include "TextEditUtils.h"
|
||||
|
|
|
@ -50,7 +50,6 @@
|
|||
|
||||
// Misc
|
||||
#include "mozilla/EditorUtils.h"
|
||||
#include "HTMLEditorObjectResizerUtils.h"
|
||||
#include "WSRunObject.h"
|
||||
#include "nsGkAtoms.h"
|
||||
#include "nsIWidget.h"
|
||||
|
|
|
@ -4,7 +4,6 @@
|
|||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||
|
||||
#include "mozilla/HTMLEditor.h"
|
||||
#include "HTMLEditorObjectResizerUtils.h"
|
||||
|
||||
#include "HTMLEditorEventListener.h"
|
||||
#include "HTMLEditUtils.h"
|
||||
|
@ -35,6 +34,15 @@
|
|||
#include "nscore.h"
|
||||
#include <algorithm>
|
||||
|
||||
#define kTopLeft NS_LITERAL_STRING("nw")
|
||||
#define kTop NS_LITERAL_STRING("n")
|
||||
#define kTopRight NS_LITERAL_STRING("ne")
|
||||
#define kLeft NS_LITERAL_STRING("w")
|
||||
#define kRight NS_LITERAL_STRING("e")
|
||||
#define kBottomLeft NS_LITERAL_STRING("sw")
|
||||
#define kBottom NS_LITERAL_STRING("s")
|
||||
#define kBottomRight NS_LITERAL_STRING("se")
|
||||
|
||||
namespace mozilla {
|
||||
|
||||
using namespace dom;
|
||||
|
@ -1117,4 +1125,13 @@ HTMLEditor::SetObjectResizingEnabled(bool aObjectResizingEnabled)
|
|||
return NS_OK;
|
||||
}
|
||||
|
||||
#undef kTopLeft
|
||||
#undef kTop
|
||||
#undef kTopRight
|
||||
#undef kLeft
|
||||
#undef kRight
|
||||
#undef kBottomLeft
|
||||
#undef kBottom
|
||||
#undef kBottomRight
|
||||
|
||||
} // namespace mozilla
|
||||
|
|
|
@ -1,31 +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 HTMLEditorObjectResizerUtils_h
|
||||
#define HTMLEditorObjectResizerUtils_h
|
||||
|
||||
#include "mozilla/HTMLEditor.h"
|
||||
#include "nsCycleCollectionParticipant.h"
|
||||
#include "nsIDOMEventListener.h"
|
||||
#include "nsISupportsImpl.h"
|
||||
#include "nsIWeakReferenceUtils.h"
|
||||
#include "nsLiteralString.h"
|
||||
|
||||
class nsIHTMLEditor;
|
||||
|
||||
namespace mozilla {
|
||||
|
||||
#define kTopLeft NS_LITERAL_STRING("nw")
|
||||
#define kTop NS_LITERAL_STRING("n")
|
||||
#define kTopRight NS_LITERAL_STRING("ne")
|
||||
#define kLeft NS_LITERAL_STRING("w")
|
||||
#define kRight NS_LITERAL_STRING("e")
|
||||
#define kBottomLeft NS_LITERAL_STRING("sw")
|
||||
#define kBottom NS_LITERAL_STRING("s")
|
||||
#define kBottomRight NS_LITERAL_STRING("se")
|
||||
|
||||
} // namespace mozilla
|
||||
|
||||
#endif // #ifndef HTMLEditorObjectResizerUtils_h
|
Загрузка…
Ссылка в новой задаче