| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2013 Apple Inc. All rights reserv
ed. | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2013 Apple Inc. All rights reserv
ed. |
| 3 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) | 3 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 260 bool isInWindow() const { return m_isInWindow; } | 260 bool isInWindow() const { return m_isInWindow; } |
| 261 | 261 |
| 262 void suspendScriptedAnimations(); | 262 void suspendScriptedAnimations(); |
| 263 void resumeScriptedAnimations(); | 263 void resumeScriptedAnimations(); |
| 264 bool scriptedAnimationsSuspended() const { return m_scriptedAnimationsSuspen
ded; } | 264 bool scriptedAnimationsSuspended() const { return m_scriptedAnimationsSuspen
ded; } |
| 265 | 265 |
| 266 void userStyleSheetLocationChanged(); | 266 void userStyleSheetLocationChanged(); |
| 267 const String& userStyleSheet() const; | 267 const String& userStyleSheet() const; |
| 268 | 268 |
| 269 void dnsPrefetchingStateChanged(); | 269 void dnsPrefetchingStateChanged(); |
| 270 void storageBlockingStateChanged(); | |
| 271 | 270 |
| 272 static void removeAllVisitedLinks(); | 271 static void removeAllVisitedLinks(); |
| 273 | 272 |
| 274 static void allVisitedStateChanged(PageGroup*); | 273 static void allVisitedStateChanged(PageGroup*); |
| 275 static void visitedStateChanged(PageGroup*, LinkHash visitedHash); | 274 static void visitedStateChanged(PageGroup*, LinkHash visitedHash); |
| 276 | 275 |
| 277 StorageNamespace* sessionStorage(bool optionalCreate = true); | 276 StorageNamespace* sessionStorage(bool optionalCreate = true); |
| 278 void setSessionStorage(PassRefPtr<StorageNamespace>); | 277 void setSessionStorage(PassRefPtr<StorageNamespace>); |
| 279 | 278 |
| 280 void setCustomHTMLTokenizerTimeDelay(double); | 279 void setCustomHTMLTokenizerTimeDelay(double); |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 457 inline PageGroup& Page::group() | 456 inline PageGroup& Page::group() |
| 458 { | 457 { |
| 459 if (!m_group) | 458 if (!m_group) |
| 460 initGroup(); | 459 initGroup(); |
| 461 return *m_group; | 460 return *m_group; |
| 462 } | 461 } |
| 463 | 462 |
| 464 } // namespace WebCore | 463 } // namespace WebCore |
| 465 | 464 |
| 466 #endif // Page_h | 465 #endif // Page_h |
| OLD | NEW |