| 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 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 285 | 285 |
| 286 void suspendScriptedAnimations(); | 286 void suspendScriptedAnimations(); |
| 287 void resumeScriptedAnimations(); | 287 void resumeScriptedAnimations(); |
| 288 bool scriptedAnimationsSuspended() const { return m_scriptedAnimationsSuspen
ded; } | 288 bool scriptedAnimationsSuspended() const { return m_scriptedAnimationsSuspen
ded; } |
| 289 | 289 |
| 290 void userStyleSheetLocationChanged(); | 290 void userStyleSheetLocationChanged(); |
| 291 const String& userStyleSheet() const; | 291 const String& userStyleSheet() const; |
| 292 | 292 |
| 293 void dnsPrefetchingStateChanged(); | 293 void dnsPrefetchingStateChanged(); |
| 294 void storageBlockingStateChanged(); | 294 void storageBlockingStateChanged(); |
| 295 void privateBrowsingStateChanged(); | |
| 296 | 295 |
| 297 static void removeAllVisitedLinks(); | 296 static void removeAllVisitedLinks(); |
| 298 | 297 |
| 299 static void allVisitedStateChanged(PageGroup*); | 298 static void allVisitedStateChanged(PageGroup*); |
| 300 static void visitedStateChanged(PageGroup*, LinkHash visitedHash); | 299 static void visitedStateChanged(PageGroup*, LinkHash visitedHash); |
| 301 | 300 |
| 302 StorageNamespace* sessionStorage(bool optionalCreate = true); | 301 StorageNamespace* sessionStorage(bool optionalCreate = true); |
| 303 void setSessionStorage(PassRefPtr<StorageNamespace>); | 302 void setSessionStorage(PassRefPtr<StorageNamespace>); |
| 304 | 303 |
| 305 void setCustomHTMLTokenizerTimeDelay(double); | 304 void setCustomHTMLTokenizerTimeDelay(double); |
| (...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 484 inline PageGroup& Page::group() | 483 inline PageGroup& Page::group() |
| 485 { | 484 { |
| 486 if (!m_group) | 485 if (!m_group) |
| 487 initGroup(); | 486 initGroup(); |
| 488 return *m_group; | 487 return *m_group; |
| 489 } | 488 } |
| 490 | 489 |
| 491 } // namespace WebCore | 490 } // namespace WebCore |
| 492 | 491 |
| 493 #endif // Page_h | 492 #endif // Page_h |
| OLD | NEW |