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

Side by Side Diff: Source/core/frame/FrameView.cpp

Issue 74513003: Moved text decoding to the parser thread (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@parserthread_step25
Patch Set: Rebase 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1998, 1999 Torben Weis <weis@kde.org> 2 * Copyright (C) 1998, 1999 Torben Weis <weis@kde.org>
3 * 1999 Lars Knoll <knoll@kde.org> 3 * 1999 Lars Knoll <knoll@kde.org>
4 * 1999 Antti Koivisto <koivisto@kde.org> 4 * 1999 Antti Koivisto <koivisto@kde.org>
5 * 2000 Dirk Mueller <mueller@kde.org> 5 * 2000 Dirk Mueller <mueller@kde.org>
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved.
7 * (C) 2006 Graham Dennis (graham.dennis@gmail.com) 7 * (C) 2006 Graham Dennis (graham.dennis@gmail.com)
8 * (C) 2006 Alexey Proskuryakov (ap@nypop.com) 8 * (C) 2006 Alexey Proskuryakov (ap@nypop.com)
9 * Copyright (C) 2009 Google Inc. All rights reserved. 9 * Copyright (C) 2009 Google Inc. All rights reserved.
10 * 10 *
(...skipping 20 matching lines...) Expand all
31 #include "RuntimeEnabledFeatures.h" 31 #include "RuntimeEnabledFeatures.h"
32 #include "core/accessibility/AXObjectCache.h" 32 #include "core/accessibility/AXObjectCache.h"
33 #include "core/animation/DocumentAnimations.h" 33 #include "core/animation/DocumentAnimations.h"
34 #include "core/css/FontFaceSet.h" 34 #include "core/css/FontFaceSet.h"
35 #include "core/css/resolver/StyleResolver.h" 35 #include "core/css/resolver/StyleResolver.h"
36 #include "core/dom/DocumentMarkerController.h" 36 #include "core/dom/DocumentMarkerController.h"
37 #include "core/editing/FrameSelection.h" 37 #include "core/editing/FrameSelection.h"
38 #include "core/events/OverflowEvent.h" 38 #include "core/events/OverflowEvent.h"
39 #include "core/fetch/ResourceFetcher.h" 39 #include "core/fetch/ResourceFetcher.h"
40 #include "core/fetch/ResourceLoadPriorityOptimizer.h" 40 #include "core/fetch/ResourceLoadPriorityOptimizer.h"
41 #include "core/fetch/TextResourceDecoder.h"
42 #include "core/html/HTMLFrameElement.h" 41 #include "core/html/HTMLFrameElement.h"
43 #include "core/html/HTMLHtmlElement.h" 42 #include "core/html/HTMLHtmlElement.h"
44 #include "core/html/HTMLPlugInElement.h" 43 #include "core/html/HTMLPlugInElement.h"
44 #include "core/html/parser/TextResourceDecoder.h"
45 #include "core/inspector/InspectorInstrumentation.h" 45 #include "core/inspector/InspectorInstrumentation.h"
46 #include "core/loader/FrameLoader.h" 46 #include "core/loader/FrameLoader.h"
47 #include "core/loader/FrameLoaderClient.h" 47 #include "core/loader/FrameLoaderClient.h"
48 #include "core/page/Chrome.h" 48 #include "core/page/Chrome.h"
49 #include "core/page/ChromeClient.h" 49 #include "core/page/ChromeClient.h"
50 #include "core/page/EventHandler.h" 50 #include "core/page/EventHandler.h"
51 #include "core/page/FocusController.h" 51 #include "core/page/FocusController.h"
52 #include "core/frame/Frame.h" 52 #include "core/frame/Frame.h"
53 #include "core/frame/GraphicsLayerDebugInfo.h" 53 #include "core/frame/GraphicsLayerDebugInfo.h"
54 #include "core/page/FrameTree.h" 54 #include "core/page/FrameTree.h"
(...skipping 3423 matching lines...) Expand 10 before | Expand all | Expand 10 after
3478 void FrameView::willRemoveScrollbar(Scrollbar* scrollbar, ScrollbarOrientation o rientation) 3478 void FrameView::willRemoveScrollbar(Scrollbar* scrollbar, ScrollbarOrientation o rientation)
3479 { 3479 {
3480 ScrollableArea::willRemoveScrollbar(scrollbar, orientation); 3480 ScrollableArea::willRemoveScrollbar(scrollbar, orientation);
3481 if (AXObjectCache* cache = axObjectCache()) { 3481 if (AXObjectCache* cache = axObjectCache()) {
3482 cache->remove(scrollbar); 3482 cache->remove(scrollbar);
3483 cache->handleScrollbarUpdate(this); 3483 cache->handleScrollbarUpdate(this);
3484 } 3484 }
3485 } 3485 }
3486 3486
3487 } // namespace WebCore 3487 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698