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

Side by Side Diff: Source/core/editing/EditorCommand.cpp

Issue 99103006: Moving GraphicsContext and dependencies from core to platform. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Final patch - fixes Android Created 7 years 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/dom/Document.cpp ('k') | Source/core/editing/FrameSelection.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved.
3 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) 3 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
4 * Copyright (C) 2009 Igalia S.L. 4 * Copyright (C) 2009 Igalia S.L.
5 * 5 *
6 * Redistribution and use in source and binary forms, with or without 6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions 7 * modification, are permitted provided that the following conditions
8 * are met: 8 * are met:
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 #include "core/html/HTMLHRElement.h" 50 #include "core/html/HTMLHRElement.h"
51 #include "core/html/HTMLImageElement.h" 51 #include "core/html/HTMLImageElement.h"
52 #include "core/page/Chrome.h" 52 #include "core/page/Chrome.h"
53 #include "core/page/EditorClient.h" 53 #include "core/page/EditorClient.h"
54 #include "core/page/EventHandler.h" 54 #include "core/page/EventHandler.h"
55 #include "core/frame/Frame.h" 55 #include "core/frame/Frame.h"
56 #include "core/frame/FrameView.h" 56 #include "core/frame/FrameView.h"
57 #include "core/page/Page.h" 57 #include "core/page/Page.h"
58 #include "core/page/Settings.h" 58 #include "core/page/Settings.h"
59 #include "core/platform/Pasteboard.h" 59 #include "core/platform/Pasteboard.h"
60 #include "core/platform/Scrollbar.h"
61 #include "core/rendering/RenderBox.h" 60 #include "core/rendering/RenderBox.h"
62 #include "platform/KillRing.h" 61 #include "platform/KillRing.h"
62 #include "platform/scroll/Scrollbar.h"
63 #include "wtf/text/AtomicString.h" 63 #include "wtf/text/AtomicString.h"
64 64
65 namespace WebCore { 65 namespace WebCore {
66 66
67 using namespace HTMLNames; 67 using namespace HTMLNames;
68 68
69 class EditorInternalCommand { 69 class EditorInternalCommand {
70 public: 70 public:
71 bool (*execute)(Frame&, Event*, EditorCommandSource, const String&); 71 bool (*execute)(Frame&, Event*, EditorCommandSource, const String&);
72 bool (*isSupportedFromDOM)(Frame*); 72 bool (*isSupportedFromDOM)(Frame*);
(...skipping 1650 matching lines...) Expand 10 before | Expand all | Expand 10 after
1723 return m_command->state(*m_frame, triggeringEvent) == TrueTriState ? "tr ue" : "false"; 1723 return m_command->state(*m_frame, triggeringEvent) == TrueTriState ? "tr ue" : "false";
1724 return m_command->value(*m_frame, triggeringEvent); 1724 return m_command->value(*m_frame, triggeringEvent);
1725 } 1725 }
1726 1726
1727 bool Editor::Command::isTextInsertion() const 1727 bool Editor::Command::isTextInsertion() const
1728 { 1728 {
1729 return m_command && m_command->isTextInsertion; 1729 return m_command && m_command->isTextInsertion;
1730 } 1730 }
1731 1731
1732 } // namespace WebCore 1732 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/dom/Document.cpp ('k') | Source/core/editing/FrameSelection.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698