Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / editing / UndoStack.h
index 2839e53..86f1ea1 100644 (file)
@@ -40,7 +40,7 @@ namespace blink {
 class LocalFrame;
 class UndoStep;
 
-class UndoStack FINAL : public NoBaseWillBeGarbageCollected<UndoStack> {
+class UndoStack final : public NoBaseWillBeGarbageCollected<UndoStack> {
     DECLARE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(UndoStack)
 public:
     static PassOwnPtrWillBeRawPtr<UndoStack> create();
@@ -58,7 +58,7 @@ public:
 private:
     UndoStack();
 
-    typedef WillBeHeapDeque<RefPtrWillBeMember<UndoStep> > UndoStepStack;
+    typedef WillBeHeapDeque<RefPtrWillBeMember<UndoStep>> UndoStepStack;
 
     void filterOutUndoSteps(UndoStepStack&, const LocalFrame&);