| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2013 Apple Inc. All rights reserved. | 3 * Copyright (C) 2013 Apple Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 244 Vector<unsigned long> setMemoryCacheCapacities(unsigned long minDeadBytes, u
nsigned long maxDeadBytes, unsigned long totalBytes); | 244 Vector<unsigned long> setMemoryCacheCapacities(unsigned long minDeadBytes, u
nsigned long maxDeadBytes, unsigned long totalBytes); |
| 245 void setInspectorResourcesDataSizeLimits(int maximumResourcesContentSize, in
t maximumSingleResourceContentSize, ExceptionState&); | 245 void setInspectorResourcesDataSizeLimits(int maximumResourcesContentSize, in
t maximumSingleResourceContentSize, ExceptionState&); |
| 246 | 246 |
| 247 String counterValue(Element*); | 247 String counterValue(Element*); |
| 248 | 248 |
| 249 int pageNumber(Element*, float pageWidth = 800, float pageHeight = 600); | 249 int pageNumber(Element*, float pageWidth = 800, float pageHeight = 600); |
| 250 Vector<String> shortcutIconURLs(Document*) const; | 250 Vector<String> shortcutIconURLs(Document*) const; |
| 251 Vector<String> allIconURLs(Document*) const; | 251 Vector<String> allIconURLs(Document*) const; |
| 252 | 252 |
| 253 int numberOfPages(float pageWidthInPixels = 800, float pageHeightInPixels =
600); | 253 int numberOfPages(float pageWidthInPixels = 800, float pageHeightInPixels =
600); |
| 254 String pageProperty(String, int, ExceptionState& = ASSERT_NO_EXCEPTION_STATE
) const; | 254 String pageProperty(String, int, ExceptionState& = ASSERT_NO_EXCEPTION) cons
t; |
| 255 String pageSizeAndMarginsInPixels(int, int, int, int, int, int, int, Excepti
onState& = ASSERT_NO_EXCEPTION_STATE) const; | 255 String pageSizeAndMarginsInPixels(int, int, int, int, int, int, int, Excepti
onState& = ASSERT_NO_EXCEPTION) const; |
| 256 | 256 |
| 257 void setDeviceScaleFactor(float scaleFactor, ExceptionState&); | 257 void setDeviceScaleFactor(float scaleFactor, ExceptionState&); |
| 258 void setPageScaleFactor(float scaleFactor, int x, int y, ExceptionState&); | 258 void setPageScaleFactor(float scaleFactor, int x, int y, ExceptionState&); |
| 259 | 259 |
| 260 void setIsCursorVisible(Document*, bool, ExceptionState&); | 260 void setIsCursorVisible(Document*, bool, ExceptionState&); |
| 261 | 261 |
| 262 void webkitWillEnterFullScreenForElement(Document*, Element*); | 262 void webkitWillEnterFullScreenForElement(Document*, Element*); |
| 263 void webkitDidEnterFullScreenForElement(Document*, Element*); | 263 void webkitDidEnterFullScreenForElement(Document*, Element*); |
| 264 void webkitWillExitFullScreenForElement(Document*, Element*); | 264 void webkitWillExitFullScreenForElement(Document*, Element*); |
| 265 void webkitDidExitFullScreenForElement(Document*, Element*); | 265 void webkitDidExitFullScreenForElement(Document*, Element*); |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 309 RefPtr<InternalRuntimeFlags> m_runtimeFlags; | 309 RefPtr<InternalRuntimeFlags> m_runtimeFlags; |
| 310 RefPtr<ScrollingCoordinator> m_scrollingCoordinator; | 310 RefPtr<ScrollingCoordinator> m_scrollingCoordinator; |
| 311 int m_touchEventTargetRectUpdateCount; | 311 int m_touchEventTargetRectUpdateCount; |
| 312 RefPtr<LayerRectList> m_currentTouchEventRects; | 312 RefPtr<LayerRectList> m_currentTouchEventRects; |
| 313 RefPtr<InternalProfilers> m_profilers; | 313 RefPtr<InternalProfilers> m_profilers; |
| 314 }; | 314 }; |
| 315 | 315 |
| 316 } // namespace WebCore | 316 } // namespace WebCore |
| 317 | 317 |
| 318 #endif | 318 #endif |
| OLD | NEW |