OLD | NEW |
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 17 matching lines...) Expand all Loading... |
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
29 */ | 29 */ |
30 | 30 |
31 #include "config.h" | 31 #include "config.h" |
32 #include "core/inspector/InspectorPageAgent.h" | 32 #include "core/inspector/InspectorPageAgent.h" |
33 | 33 |
34 #include "bindings/core/v8/DOMWrapperWorld.h" | 34 #include "bindings/core/v8/DOMWrapperWorld.h" |
35 #include "bindings/core/v8/ScriptController.h" | 35 #include "bindings/core/v8/ScriptController.h" |
36 #include "bindings/core/v8/ScriptRegexp.h" | 36 #include "bindings/core/v8/ScriptRegexp.h" |
37 #include "core/HTMLNames.h" | 37 #include "core/HTMLNames.h" |
38 #include "core/UserAgentStyleSheets.h" | |
39 #include "core/css/StyleSheetContents.h" | 38 #include "core/css/StyleSheetContents.h" |
40 #include "core/css/resolver/StyleResolver.h" | 39 #include "core/css/resolver/StyleResolver.h" |
41 #include "core/css/resolver/ViewportStyleResolver.h" | 40 #include "core/css/resolver/ViewportStyleResolver.h" |
42 #include "core/dom/DOMImplementation.h" | 41 #include "core/dom/DOMImplementation.h" |
43 #include "core/dom/Document.h" | 42 #include "core/dom/Document.h" |
44 #include "core/fetch/CSSStyleSheetResource.h" | 43 #include "core/fetch/CSSStyleSheetResource.h" |
45 #include "core/fetch/FontResource.h" | 44 #include "core/fetch/FontResource.h" |
46 #include "core/fetch/ImageResource.h" | 45 #include "core/fetch/ImageResource.h" |
47 #include "core/fetch/MemoryCache.h" | 46 #include "core/fetch/MemoryCache.h" |
48 #include "core/fetch/Resource.h" | 47 #include "core/fetch/Resource.h" |
(...skipping 20 matching lines...) Expand all Loading... |
69 #include "core/inspector/InstrumentingAgents.h" | 68 #include "core/inspector/InstrumentingAgents.h" |
70 #include "core/loader/CookieJar.h" | 69 #include "core/loader/CookieJar.h" |
71 #include "core/loader/DocumentLoader.h" | 70 #include "core/loader/DocumentLoader.h" |
72 #include "core/loader/FrameLoadRequest.h" | 71 #include "core/loader/FrameLoadRequest.h" |
73 #include "core/loader/FrameLoader.h" | 72 #include "core/loader/FrameLoader.h" |
74 #include "core/page/Page.h" | 73 #include "core/page/Page.h" |
75 #include "platform/Cookie.h" | 74 #include "platform/Cookie.h" |
76 #include "platform/JSONValues.h" | 75 #include "platform/JSONValues.h" |
77 #include "platform/UserGestureIndicator.h" | 76 #include "platform/UserGestureIndicator.h" |
78 #include "platform/weborigin/SecurityOrigin.h" | 77 #include "platform/weborigin/SecurityOrigin.h" |
| 78 #include "public/platform/Platform.h" |
| 79 #include "public/platform/WebData.h" |
79 #include "wtf/CurrentTime.h" | 80 #include "wtf/CurrentTime.h" |
80 #include "wtf/ListHashSet.h" | 81 #include "wtf/ListHashSet.h" |
81 #include "wtf/Vector.h" | 82 #include "wtf/Vector.h" |
82 #include "wtf/text/Base64.h" | 83 #include "wtf/text/Base64.h" |
83 #include "wtf/text/TextEncoding.h" | 84 #include "wtf/text/TextEncoding.h" |
84 | 85 |
85 namespace blink { | 86 namespace blink { |
86 | 87 |
87 namespace PageAgentState { | 88 namespace PageAgentState { |
88 static const char pageAgentEnabled[] = "pageAgentEnabled"; | 89 static const char pageAgentEnabled[] = "pageAgentEnabled"; |
(...skipping 1301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1390 document->updateLayout(); | 1391 document->updateLayout(); |
1391 } | 1392 } |
1392 } | 1393 } |
1393 | 1394 |
1394 bool InspectorPageAgent::applyViewportStyleOverride(StyleResolver* resolver) | 1395 bool InspectorPageAgent::applyViewportStyleOverride(StyleResolver* resolver) |
1395 { | 1396 { |
1396 if (!m_deviceMetricsOverridden || !m_emulateMobileEnabled) | 1397 if (!m_deviceMetricsOverridden || !m_emulateMobileEnabled) |
1397 return false; | 1398 return false; |
1398 | 1399 |
1399 RefPtrWillBeRawPtr<StyleSheetContents> styleSheet = StyleSheetContents::crea
te(CSSParserContext(UASheetMode, 0)); | 1400 RefPtrWillBeRawPtr<StyleSheetContents> styleSheet = StyleSheetContents::crea
te(CSSParserContext(UASheetMode, 0)); |
1400 styleSheet->parseString(String(viewportAndroidCss, sizeof(viewportAndroidCss
))); | 1401 const WebData& viewportAndroidCssResource = Platform::current()->loadResourc
e("viewportAndroid.css"); |
| 1402 String viewportAndroidRules = viewportAndroidCssResource.toASCIIString(); |
| 1403 ASSERT(!viewportAndroidRules.isEmpty()); |
| 1404 styleSheet->parseString(viewportAndroidRules); |
1401 OwnPtrWillBeRawPtr<RuleSet> ruleSet = RuleSet::create(); | 1405 OwnPtrWillBeRawPtr<RuleSet> ruleSet = RuleSet::create(); |
1402 ruleSet->addRulesFromSheet(styleSheet.get(), MediaQueryEvaluator("screen")); | 1406 ruleSet->addRulesFromSheet(styleSheet.get(), MediaQueryEvaluator("screen")); |
1403 resolver->viewportStyleResolver()->collectViewportRules(ruleSet.get(), Viewp
ortStyleResolver::UserAgentOrigin); | 1407 resolver->viewportStyleResolver()->collectViewportRules(ruleSet.get(), Viewp
ortStyleResolver::UserAgentOrigin); |
1404 return true; | 1408 return true; |
1405 } | 1409 } |
1406 | 1410 |
1407 void InspectorPageAgent::applyEmulatedMedia(String* media) | 1411 void InspectorPageAgent::applyEmulatedMedia(String* media) |
1408 { | 1412 { |
1409 String emulatedMedia = m_state->getString(PageAgentState::pageAgentEmulatedM
edia); | 1413 String emulatedMedia = m_state->getString(PageAgentState::pageAgentEmulatedM
edia); |
1410 if (!emulatedMedia.isEmpty()) | 1414 if (!emulatedMedia.isEmpty()) |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1447 | 1451 |
1448 void InspectorPageAgent::trace(Visitor* visitor) | 1452 void InspectorPageAgent::trace(Visitor* visitor) |
1449 { | 1453 { |
1450 visitor->trace(m_page); | 1454 visitor->trace(m_page); |
1451 visitor->trace(m_injectedScriptManager); | 1455 visitor->trace(m_injectedScriptManager); |
1452 InspectorBaseAgent::trace(visitor); | 1456 InspectorBaseAgent::trace(visitor); |
1453 } | 1457 } |
1454 | 1458 |
1455 } // namespace blink | 1459 } // namespace blink |
1456 | 1460 |
OLD | NEW |