Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(208)

Side by Side Diff: Source/WebCore/page/Page.h

Issue 13861033: Remove Apple's unused implementation of private browsing from WebCore (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Repatch to ToT Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/WebCore/page/Console.cpp ('k') | Source/WebCore/page/Page.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 250 matching lines...) Expand 10 before | Expand all | Expand 10 after
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(); 270 void storageBlockingStateChanged();
271 void privateBrowsingStateChanged();
272 271
273 static void removeAllVisitedLinks(); 272 static void removeAllVisitedLinks();
274 273
275 static void allVisitedStateChanged(PageGroup*); 274 static void allVisitedStateChanged(PageGroup*);
276 static void visitedStateChanged(PageGroup*, LinkHash visitedHash); 275 static void visitedStateChanged(PageGroup*, LinkHash visitedHash);
277 276
278 StorageNamespace* sessionStorage(bool optionalCreate = true); 277 StorageNamespace* sessionStorage(bool optionalCreate = true);
279 void setSessionStorage(PassRefPtr<StorageNamespace>); 278 void setSessionStorage(PassRefPtr<StorageNamespace>);
280 279
281 void setCustomHTMLTokenizerTimeDelay(double); 280 void setCustomHTMLTokenizerTimeDelay(double);
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
458 inline PageGroup& Page::group() 457 inline PageGroup& Page::group()
459 { 458 {
460 if (!m_group) 459 if (!m_group)
461 initGroup(); 460 initGroup();
462 return *m_group; 461 return *m_group;
463 } 462 }
464 463
465 } // namespace WebCore 464 } // namespace WebCore
466 465
467 #endif // Page_h 466 #endif // Page_h
OLDNEW
« no previous file with comments | « Source/WebCore/page/Console.cpp ('k') | Source/WebCore/page/Page.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698