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

Side by Side Diff: sky/engine/core/editing/Editor.cpp

Issue 1001913003: Remove <canvas> (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 9 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 unified diff | Download patch
« no previous file with comments | « sky/engine/core/dom/Element.cpp ('k') | sky/engine/core/frame/ImageBitmap.h » ('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, 2011 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008, 2011 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 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 #include "sky/engine/core/editing/VisibleUnits.h" 46 #include "sky/engine/core/editing/VisibleUnits.h"
47 #include "sky/engine/core/editing/htmlediting.h" 47 #include "sky/engine/core/editing/htmlediting.h"
48 #include "sky/engine/core/events/KeyboardEvent.h" 48 #include "sky/engine/core/events/KeyboardEvent.h"
49 #include "sky/engine/core/events/ScopedEventQueue.h" 49 #include "sky/engine/core/events/ScopedEventQueue.h"
50 #include "sky/engine/core/events/TextEvent.h" 50 #include "sky/engine/core/events/TextEvent.h"
51 #include "sky/engine/core/fetch/ImageResource.h" 51 #include "sky/engine/core/fetch/ImageResource.h"
52 #include "sky/engine/core/fetch/ResourceFetcher.h" 52 #include "sky/engine/core/fetch/ResourceFetcher.h"
53 #include "sky/engine/core/frame/FrameView.h" 53 #include "sky/engine/core/frame/FrameView.h"
54 #include "sky/engine/core/frame/LocalFrame.h" 54 #include "sky/engine/core/frame/LocalFrame.h"
55 #include "sky/engine/core/frame/Settings.h" 55 #include "sky/engine/core/frame/Settings.h"
56 #include "sky/engine/core/html/HTMLCanvasElement.h"
57 #include "sky/engine/core/html/HTMLImageElement.h" 56 #include "sky/engine/core/html/HTMLImageElement.h"
58 #include "sky/engine/core/html/parser/HTMLParserIdioms.h" 57 #include "sky/engine/core/html/parser/HTMLParserIdioms.h"
59 #include "sky/engine/core/loader/EmptyClients.h" 58 #include "sky/engine/core/loader/EmptyClients.h"
60 #include "sky/engine/core/page/EditorClient.h" 59 #include "sky/engine/core/page/EditorClient.h"
61 #include "sky/engine/core/page/EventHandler.h" 60 #include "sky/engine/core/page/EventHandler.h"
62 #include "sky/engine/core/page/FocusController.h" 61 #include "sky/engine/core/page/FocusController.h"
63 #include "sky/engine/core/page/Page.h" 62 #include "sky/engine/core/page/Page.h"
64 #include "sky/engine/core/rendering/HitTestResult.h" 63 #include "sky/engine/core/rendering/HitTestResult.h"
65 #include "sky/engine/core/rendering/RenderImage.h" 64 #include "sky/engine/core/rendering/RenderImage.h"
66 #include "sky/engine/platform/weborigin/KURL.h" 65 #include "sky/engine/platform/weborigin/KURL.h"
(...skipping 746 matching lines...) Expand 10 before | Expand all | Expand 10 after
813 return m_frame.spellChecker(); 812 return m_frame.spellChecker();
814 } 813 }
815 814
816 void Editor::toggleOverwriteModeEnabled() 815 void Editor::toggleOverwriteModeEnabled()
817 { 816 {
818 m_overwriteModeEnabled = !m_overwriteModeEnabled; 817 m_overwriteModeEnabled = !m_overwriteModeEnabled;
819 frame().selection().setShouldShowBlockCursor(m_overwriteModeEnabled); 818 frame().selection().setShouldShowBlockCursor(m_overwriteModeEnabled);
820 } 819 }
821 820
822 } // namespace blink 821 } // namespace blink
OLDNEW
« no previous file with comments | « sky/engine/core/dom/Element.cpp ('k') | sky/engine/core/frame/ImageBitmap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698