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

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: 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
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 274 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698