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

Side by Side Diff: Tools/DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp

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 | « Tools/DumpRenderTree/TestNetscapePlugIn/Tests/PrivateBrowsing.cpp ('k') | no next file » | 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) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 Google Inc. All rights reserved.
3 * Copyright (C) 2010 Pawel Hajdan (phajdan.jr@chromium.org) 3 * Copyright (C) 2010 Pawel Hajdan (phajdan.jr@chromium.org)
4 * Copyright (C) 2012 Apple Inc. All Rights Reserved. 4 * Copyright (C) 2012 Apple Inc. All Rights Reserved.
5 * 5 *
6 * Redistribution and use in source and binary forms, with or without 6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are 7 * modification, are permitted provided that the following conditions are
8 * met: 8 * met:
9 * 9 *
10 * * Redistributions of source code must retain the above copyright 10 * * Redistributions of source code must retain the above copyright
(...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after
306 bindMethod("simulateWebNotificationClick", &TestRunner::notImplemented); 306 bindMethod("simulateWebNotificationClick", &TestRunner::notImplemented);
307 bindMethod("setIconDatabaseEnabled", &TestRunner::notImplemented); 307 bindMethod("setIconDatabaseEnabled", &TestRunner::notImplemented);
308 bindMethod("setScrollbarPolicy", &TestRunner::notImplemented); 308 bindMethod("setScrollbarPolicy", &TestRunner::notImplemented);
309 bindMethod("clearAllApplicationCaches", &TestRunner::notImplemented); 309 bindMethod("clearAllApplicationCaches", &TestRunner::notImplemented);
310 bindMethod("clearApplicationCacheForOrigin", &TestRunner::notImplemented); 310 bindMethod("clearApplicationCacheForOrigin", &TestRunner::notImplemented);
311 bindMethod("clearBackForwardList", &TestRunner::notImplemented); 311 bindMethod("clearBackForwardList", &TestRunner::notImplemented);
312 bindMethod("keepWebHistory", &TestRunner::notImplemented); 312 bindMethod("keepWebHistory", &TestRunner::notImplemented);
313 bindMethod("setApplicationCacheOriginQuota", &TestRunner::notImplemented); 313 bindMethod("setApplicationCacheOriginQuota", &TestRunner::notImplemented);
314 bindMethod("setCallCloseOnWebViews", &TestRunner::notImplemented); 314 bindMethod("setCallCloseOnWebViews", &TestRunner::notImplemented);
315 bindMethod("setMainFrameIsFirstResponder", &TestRunner::notImplemented); 315 bindMethod("setMainFrameIsFirstResponder", &TestRunner::notImplemented);
316 bindMethod("setPrivateBrowsingEnabled", &TestRunner::notImplemented);
317 bindMethod("setUseDashboardCompatibilityMode", &TestRunner::notImplemented); 316 bindMethod("setUseDashboardCompatibilityMode", &TestRunner::notImplemented);
318 bindMethod("deleteAllLocalStorage", &TestRunner::notImplemented); 317 bindMethod("deleteAllLocalStorage", &TestRunner::notImplemented);
319 bindMethod("localStorageDiskUsageForOrigin", &TestRunner::notImplemented); 318 bindMethod("localStorageDiskUsageForOrigin", &TestRunner::notImplemented);
320 bindMethod("originsWithLocalStorage", &TestRunner::notImplemented); 319 bindMethod("originsWithLocalStorage", &TestRunner::notImplemented);
321 bindMethod("deleteLocalStorageForOrigin", &TestRunner::notImplemented); 320 bindMethod("deleteLocalStorageForOrigin", &TestRunner::notImplemented);
322 bindMethod("observeStorageTrackerNotifications", &TestRunner::notImplemented ); 321 bindMethod("observeStorageTrackerNotifications", &TestRunner::notImplemented );
323 bindMethod("syncLocalStorage", &TestRunner::notImplemented); 322 bindMethod("syncLocalStorage", &TestRunner::notImplemented);
324 bindMethod("addDisallowedURL", &TestRunner::notImplemented); 323 bindMethod("addDisallowedURL", &TestRunner::notImplemented);
325 bindMethod("applicationCacheDiskUsageForOrigin", &TestRunner::notImplemented ); 324 bindMethod("applicationCacheDiskUsageForOrigin", &TestRunner::notImplemented );
326 bindMethod("abortModal", &TestRunner::notImplemented); 325 bindMethod("abortModal", &TestRunner::notImplemented);
(...skipping 1716 matching lines...) Expand 10 before | Expand all | Expand 10 after
2043 result->setNull(); 2042 result->setNull();
2044 } 2043 }
2045 2044
2046 void TestRunner::setPointerLockWillFailSynchronously(const CppArgumentList&, Cpp Variant* result) 2045 void TestRunner::setPointerLockWillFailSynchronously(const CppArgumentList&, Cpp Variant* result)
2047 { 2046 {
2048 m_pointerLockPlannedResult = PointerLockWillFailSync; 2047 m_pointerLockPlannedResult = PointerLockWillFailSync;
2049 result->setNull(); 2048 result->setNull();
2050 } 2049 }
2051 2050
2052 } 2051 }
OLDNEW
« no previous file with comments | « Tools/DumpRenderTree/TestNetscapePlugIn/Tests/PrivateBrowsing.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698