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

Side by Side Diff: sky/engine/core/editing/MoveSelectionCommand.h

Issue 723253004: Remove tons of OILPAN. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2005, 2006, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2005, 2006, 2008 Apple Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 21 matching lines...) Expand all
32 32
33 class DocumentFragment; 33 class DocumentFragment;
34 34
35 class MoveSelectionCommand final : public CompositeEditCommand { 35 class MoveSelectionCommand final : public CompositeEditCommand {
36 public: 36 public:
37 static PassRefPtr<MoveSelectionCommand> create(PassRefPtr<DocumentFragment> fragment, const Position& position, bool smartInsert = false, bool smartDelete = false) 37 static PassRefPtr<MoveSelectionCommand> create(PassRefPtr<DocumentFragment> fragment, const Position& position, bool smartInsert = false, bool smartDelete = false)
38 { 38 {
39 return adoptRef(new MoveSelectionCommand(fragment, position, smartInsert , smartDelete)); 39 return adoptRef(new MoveSelectionCommand(fragment, position, smartInsert , smartDelete));
40 } 40 }
41 41
42 virtual void trace(Visitor*) override;
43
44 private: 42 private:
45 MoveSelectionCommand(PassRefPtr<DocumentFragment>, const Position&, bool sma rtInsert, bool smartDelete); 43 MoveSelectionCommand(PassRefPtr<DocumentFragment>, const Position&, bool sma rtInsert, bool smartDelete);
46 44
47 virtual void doApply() override; 45 virtual void doApply() override;
48 virtual EditAction editingAction() const override; 46 virtual EditAction editingAction() const override;
49 47
50 RefPtr<DocumentFragment> m_fragment; 48 RefPtr<DocumentFragment> m_fragment;
51 Position m_position; 49 Position m_position;
52 bool m_smartInsert; 50 bool m_smartInsert;
53 bool m_smartDelete; 51 bool m_smartDelete;
54 }; 52 };
55 53
56 } // namespace blink 54 } // namespace blink
57 55
58 #endif // MoveSelectionCommand_h 56 #endif // MoveSelectionCommand_h
OLDNEW
« no previous file with comments | « sky/engine/core/editing/InsertParagraphSeparatorCommand.cpp ('k') | sky/engine/core/editing/MoveSelectionCommand.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698