Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(907)

Unified Diff: Source/core/editing/ApplyStyleCommand.cpp

Issue 22887044: [oilpan] Make the oilpan branch build on Mac. (Closed) Base URL: svn://svn.chromium.org/blink/branches/oilpan
Patch Set: Only disable the malloc part of consistency checking Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/core/editing/ApplyStyleCommand.cpp
diff --git a/Source/core/editing/ApplyStyleCommand.cpp b/Source/core/editing/ApplyStyleCommand.cpp
index ebd8e43e298d71635c0bcaa32094de03af706c15..d760dde19fd570f2e4f1b897b7e2924f11dac07d 100644
--- a/Source/core/editing/ApplyStyleCommand.cpp
+++ b/Source/core/editing/ApplyStyleCommand.cpp
@@ -127,7 +127,6 @@ ApplyStyleCommand::ApplyStyleCommand(const Handle<Document>& document, const Edi
, m_start(endingSelection().start().downstream())
, m_end(endingSelection().end().upstream())
, m_useEndingSelection(true)
- , m_styledInlineElement(0)
, m_removeOnly(false)
, m_isInlineElementToRemoveFunction(0)
{
@@ -141,7 +140,6 @@ ApplyStyleCommand::ApplyStyleCommand(const Handle<Document>& document, const Edi
, m_start(start)
, m_end(end)
, m_useEndingSelection(false)
- , m_styledInlineElement(0)
, m_removeOnly(false)
, m_isInlineElementToRemoveFunction(0)
{
@@ -169,7 +167,6 @@ ApplyStyleCommand::ApplyStyleCommand(const Handle<Document>& document, const Edi
, m_start(endingSelection().start().downstream())
, m_end(endingSelection().end().upstream())
, m_useEndingSelection(true)
- , m_styledInlineElement(0)
, m_removeOnly(true)
, m_isInlineElementToRemoveFunction(isInlineElementToRemoveFunction)
{

Powered by Google App Engine
This is Rietveld 408576698