Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / editing / BreakBlockquoteCommand.h
index 9678704..acd7d5d 100644 (file)
 
 #include "core/editing/CompositeEditCommand.h"
 
-namespace WebCore {
+namespace blink {
 
 class BreakBlockquoteCommand FINAL : public CompositeEditCommand {
 public:
-    static PassRefPtr<BreakBlockquoteCommand> create(Document& document)
+    static PassRefPtrWillBeRawPtr<BreakBlockquoteCommand> create(Document& document)
     {
-        return adoptRef(new BreakBlockquoteCommand(document));
+        return adoptRefWillBeNoop(new BreakBlockquoteCommand(document));
     }
 
 private:
@@ -42,6 +42,6 @@ private:
     virtual void doApply() OVERRIDE;
 };
 
-} // namespace WebCore
+} // namespace blink
 
 #endif