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

Side by Side Diff: Source/core/inspector/InspectorPageAgent.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) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google 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 are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * 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 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 29 matching lines...) Expand all
40 #include "core/css/resolver/ViewportStyleResolver.h" 40 #include "core/css/resolver/ViewportStyleResolver.h"
41 #include "core/dom/DOMImplementation.h" 41 #include "core/dom/DOMImplementation.h"
42 #include "core/dom/Document.h" 42 #include "core/dom/Document.h"
43 #include "core/fetch/CSSStyleSheetResource.h" 43 #include "core/fetch/CSSStyleSheetResource.h"
44 #include "core/fetch/FontResource.h" 44 #include "core/fetch/FontResource.h"
45 #include "core/fetch/ImageResource.h" 45 #include "core/fetch/ImageResource.h"
46 #include "core/fetch/MemoryCache.h" 46 #include "core/fetch/MemoryCache.h"
47 #include "core/fetch/Resource.h" 47 #include "core/fetch/Resource.h"
48 #include "core/fetch/ResourceFetcher.h" 48 #include "core/fetch/ResourceFetcher.h"
49 #include "core/fetch/ScriptResource.h" 49 #include "core/fetch/ScriptResource.h"
50 #include "core/fetch/TextResourceDecoder.h"
51 #include "core/html/HTMLFrameOwnerElement.h" 50 #include "core/html/HTMLFrameOwnerElement.h"
51 #include "core/html/parser/TextResourceDecoder.h"
52 #include "core/inspector/ContentSearchUtils.h" 52 #include "core/inspector/ContentSearchUtils.h"
53 #include "core/inspector/DOMPatchSupport.h" 53 #include "core/inspector/DOMPatchSupport.h"
54 #include "core/inspector/IdentifiersFactory.h" 54 #include "core/inspector/IdentifiersFactory.h"
55 #include "core/inspector/InjectedScriptManager.h" 55 #include "core/inspector/InjectedScriptManager.h"
56 #include "core/inspector/InspectorClient.h" 56 #include "core/inspector/InspectorClient.h"
57 #include "core/inspector/InspectorInstrumentation.h" 57 #include "core/inspector/InspectorInstrumentation.h"
58 #include "core/inspector/InspectorOverlay.h" 58 #include "core/inspector/InspectorOverlay.h"
59 #include "core/inspector/InspectorState.h" 59 #include "core/inspector/InspectorState.h"
60 #include "core/inspector/InstrumentingAgents.h" 60 #include "core/inspector/InstrumentingAgents.h"
61 #include "core/loader/CookieJar.h" 61 #include "core/loader/CookieJar.h"
(...skipping 1205 matching lines...) Expand 10 before | Expand all | Expand 10 after
1267 } 1267 }
1268 1268
1269 void InspectorPageAgent::setShowViewportSizeOnResize(ErrorString*, bool show, co nst bool* showGrid) 1269 void InspectorPageAgent::setShowViewportSizeOnResize(ErrorString*, bool show, co nst bool* showGrid)
1270 { 1270 {
1271 m_state->setBoolean(PageAgentState::showSizeOnResize, show); 1271 m_state->setBoolean(PageAgentState::showSizeOnResize, show);
1272 m_state->setBoolean(PageAgentState::showGridOnResize, showGrid && *showGrid) ; 1272 m_state->setBoolean(PageAgentState::showGridOnResize, showGrid && *showGrid) ;
1273 } 1273 }
1274 1274
1275 } // namespace WebCore 1275 } // namespace WebCore
1276 1276
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698