| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 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 1308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1319 bool WebLocalFrameImpl::hasCustomPageSizeStyle(int pageIndex) | 1319 bool WebLocalFrameImpl::hasCustomPageSizeStyle(int pageIndex) |
| 1320 { | 1320 { |
| 1321 return frame()->document()->styleForPage(pageIndex)->getPageSizeType() != PA
GE_SIZE_AUTO; | 1321 return frame()->document()->styleForPage(pageIndex)->getPageSizeType() != PA
GE_SIZE_AUTO; |
| 1322 } | 1322 } |
| 1323 | 1323 |
| 1324 bool WebLocalFrameImpl::isPageBoxVisible(int pageIndex) | 1324 bool WebLocalFrameImpl::isPageBoxVisible(int pageIndex) |
| 1325 { | 1325 { |
| 1326 return frame()->document()->isPageBoxVisible(pageIndex); | 1326 return frame()->document()->isPageBoxVisible(pageIndex); |
| 1327 } | 1327 } |
| 1328 | 1328 |
| 1329 void WebLocalFrameImpl::pageSizeAndMarginsInPixels(int pageIndex, WebSize& pageS
ize, int& marginTop, int& marginRight, int& marginBottom, int& marginLeft) | 1329 void WebLocalFrameImpl::pageSizeAndMarginsInPixels(int pageIndex, WebFloatSize&
pageSize, int& marginTop, int& marginRight, int& marginBottom, int& marginLeft) |
| 1330 { | 1330 { |
| 1331 IntSize size = pageSize; | 1331 FloatSize size = pageSize; |
| 1332 frame()->document()->pageSizeAndMarginsInPixels(pageIndex, size, marginTop,
marginRight, marginBottom, marginLeft); | 1332 frame()->document()->pageSizeAndMarginsInPixels(pageIndex, size, marginTop,
marginRight, marginBottom, marginLeft); |
| 1333 pageSize = size; | 1333 pageSize = size; |
| 1334 } | 1334 } |
| 1335 | 1335 |
| 1336 WebString WebLocalFrameImpl::pageProperty(const WebString& propertyName, int pag
eIndex) | 1336 WebString WebLocalFrameImpl::pageProperty(const WebString& propertyName, int pag
eIndex) |
| 1337 { | 1337 { |
| 1338 DCHECK(m_printContext); | 1338 DCHECK(m_printContext); |
| 1339 return m_printContext->pageProperty(frame(), propertyName.utf8().data(), pag
eIndex); | 1339 return m_printContext->pageProperty(frame(), propertyName.utf8().data(), pag
eIndex); |
| 1340 } | 1340 } |
| 1341 | 1341 |
| (...skipping 814 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2156 { | 2156 { |
| 2157 frame()->loader().forceSandboxFlags(static_cast<SandboxFlags>(flags)); | 2157 frame()->loader().forceSandboxFlags(static_cast<SandboxFlags>(flags)); |
| 2158 } | 2158 } |
| 2159 | 2159 |
| 2160 void WebLocalFrameImpl::clearActiveFindMatch() | 2160 void WebLocalFrameImpl::clearActiveFindMatch() |
| 2161 { | 2161 { |
| 2162 ensureTextFinder().clearActiveFindMatch(); | 2162 ensureTextFinder().clearActiveFindMatch(); |
| 2163 } | 2163 } |
| 2164 | 2164 |
| 2165 } // namespace blink | 2165 } // namespace blink |
| OLD | NEW |