| 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 #include "core/loader/CookieJar.h" | 59 #include "core/loader/CookieJar.h" |
| 60 #include "core/loader/DocumentLoader.h" | 60 #include "core/loader/DocumentLoader.h" |
| 61 #include "core/loader/FrameLoadRequest.h" | 61 #include "core/loader/FrameLoadRequest.h" |
| 62 #include "core/loader/FrameLoader.h" | 62 #include "core/loader/FrameLoader.h" |
| 63 #include "core/page/Frame.h" | 63 #include "core/page/Frame.h" |
| 64 #include "core/page/FrameView.h" | 64 #include "core/page/FrameView.h" |
| 65 #include "core/page/Page.h" | 65 #include "core/page/Page.h" |
| 66 #include "core/page/PageConsole.h" | 66 #include "core/page/PageConsole.h" |
| 67 #include "core/page/Settings.h" | 67 #include "core/page/Settings.h" |
| 68 #include "core/platform/Cookie.h" | 68 #include "core/platform/Cookie.h" |
| 69 #include "core/platform/JSONValues.h" | |
| 70 #include "core/platform/text/RegularExpression.h" | 69 #include "core/platform/text/RegularExpression.h" |
| 71 #include "modules/device_orientation/NewDeviceOrientationController.h" | 70 #include "modules/device_orientation/NewDeviceOrientationController.h" |
| 72 #include "modules/geolocation/GeolocationController.h" | 71 #include "modules/geolocation/GeolocationController.h" |
| 72 #include "platform/JSONValues.h" |
| 73 #include "weborigin/SecurityOrigin.h" | 73 #include "weborigin/SecurityOrigin.h" |
| 74 #include "wtf/CurrentTime.h" | 74 #include "wtf/CurrentTime.h" |
| 75 #include "wtf/ListHashSet.h" | 75 #include "wtf/ListHashSet.h" |
| 76 #include "wtf/Vector.h" | 76 #include "wtf/Vector.h" |
| 77 #include "wtf/text/Base64.h" | 77 #include "wtf/text/Base64.h" |
| 78 #include "wtf/text/TextEncoding.h" | 78 #include "wtf/text/TextEncoding.h" |
| 79 | 79 |
| 80 namespace WebCore { | 80 namespace WebCore { |
| 81 | 81 |
| 82 namespace PageAgentState { | 82 namespace PageAgentState { |
| (...skipping 1209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1292 } | 1292 } |
| 1293 | 1293 |
| 1294 void InspectorPageAgent::setShowViewportSizeOnResize(ErrorString*, bool show, co
nst bool* showGrid) | 1294 void InspectorPageAgent::setShowViewportSizeOnResize(ErrorString*, bool show, co
nst bool* showGrid) |
| 1295 { | 1295 { |
| 1296 m_state->setBoolean(PageAgentState::showSizeOnResize, show); | 1296 m_state->setBoolean(PageAgentState::showSizeOnResize, show); |
| 1297 m_state->setBoolean(PageAgentState::showGridOnResize, showGrid && *showGrid)
; | 1297 m_state->setBoolean(PageAgentState::showGridOnResize, showGrid && *showGrid)
; |
| 1298 } | 1298 } |
| 1299 | 1299 |
| 1300 } // namespace WebCore | 1300 } // namespace WebCore |
| 1301 | 1301 |
| OLD | NEW |