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

Unified Diff: Source/core/editing/commands/SetNodeAttributeCommand.cpp

Issue 1294543005: Move execCommand related files in core/editing/ related files into core/editing/commands/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 2015-08-17T17:57:33 Created 5 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/commands/SetNodeAttributeCommand.cpp
diff --git a/Source/core/editing/SetNodeAttributeCommand.cpp b/Source/core/editing/commands/SetNodeAttributeCommand.cpp
similarity index 94%
rename from Source/core/editing/SetNodeAttributeCommand.cpp
rename to Source/core/editing/commands/SetNodeAttributeCommand.cpp
index 3bc47b5dff3200ca9b0eb3a82c73b26af94e57ae..0b856516967a360e0fb30f892d3f300201dc7923 100644
--- a/Source/core/editing/SetNodeAttributeCommand.cpp
+++ b/Source/core/editing/commands/SetNodeAttributeCommand.cpp
@@ -24,7 +24,7 @@
*/
#include "config.h"
-#include "core/editing/SetNodeAttributeCommand.h"
+#include "core/editing/commands/SetNodeAttributeCommand.h"
#include "core/dom/Element.h"
#include "wtf/Assertions.h"
@@ -32,7 +32,7 @@
namespace blink {
SetNodeAttributeCommand::SetNodeAttributeCommand(PassRefPtrWillBeRawPtr<Element> element,
- const QualifiedName& attribute, const AtomicString& value)
+ const QualifiedName& attribute, const AtomicString& value)
: SimpleEditCommand(element->document())
, m_element(element)
, m_attribute(attribute)

Powered by Google App Engine
This is Rietveld 408576698