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 1283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1294 { | 1294 { |
1295 // Handled on the browser level. | 1295 // Handled on the browser level. |
1296 } | 1296 } |
1297 | 1297 |
1298 void InspectorPageAgent::setShowViewportSizeOnResize(ErrorString*, bool show, co
nst bool* showGrid) | 1298 void InspectorPageAgent::setShowViewportSizeOnResize(ErrorString*, bool show, co
nst bool* showGrid) |
1299 { | 1299 { |
1300 m_state->setBoolean(PageAgentState::showSizeOnResize, show); | 1300 m_state->setBoolean(PageAgentState::showSizeOnResize, show); |
1301 m_state->setBoolean(PageAgentState::showGridOnResize, showGrid && *showGrid)
; | 1301 m_state->setBoolean(PageAgentState::showGridOnResize, showGrid && *showGrid)
; |
1302 } | 1302 } |
1303 | 1303 |
| 1304 void InspectorPageAgent::queryUsageAndQuota(ErrorString*, const String&, RefPtr<
TypeBuilder::Page::Quota>&, RefPtr<TypeBuilder::Page::Usage>&) |
| 1305 { |
| 1306 // Handled on the browser level. |
| 1307 } |
| 1308 |
1304 } // namespace WebCore | 1309 } // namespace WebCore |
1305 | 1310 |
OLD | NEW |