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

Unified Diff: Source/WebCore/editing/TypingCommand.h

Issue 13954003: Remove mail blockquote special case handling. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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/WebCore/editing/TypingCommand.h
diff --git a/Source/WebCore/editing/TypingCommand.h b/Source/WebCore/editing/TypingCommand.h
index 950eec80a3ba0bab007a4487d2bf443129553dd1..b1ce2c33ccf544200223e785045bff2693a22637 100644
--- a/Source/WebCore/editing/TypingCommand.h
+++ b/Source/WebCore/editing/TypingCommand.h
@@ -39,7 +39,6 @@ public:
InsertText,
InsertLineBreak,
InsertParagraphSeparator,
- InsertParagraphSeparatorInQuotedContent
};
enum TextCompositionType {
@@ -64,13 +63,11 @@ public:
static void insertText(Document*, const String&, const VisibleSelection&, Options, TextCompositionType = TextCompositionNone);
static void insertLineBreak(Document*, Options);
static void insertParagraphSeparator(Document*, Options);
- static void insertParagraphSeparatorInQuotedContent(Document*);
static void closeTyping(Frame*);
void insertText(const String &text, bool selectInsertedText);
void insertTextRunWithoutNewlines(const String &text, bool selectInsertedText);
void insertLineBreak();
- void insertParagraphSeparatorInQuotedContent();
void insertParagraphSeparator();
void deleteKeyPressed(TextGranularity, bool killRing);
void forwardDeleteKeyPressed(TextGranularity, bool killRing);

Powered by Google App Engine
This is Rietveld 408576698