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

Unified Diff: third_party/WebKit/Source/modules/storage/DOMWindowStorageController.cpp

Issue 2615953003: Rename IGNORE_EXCEPTION to IGNORE_EXCEPTION_FOR_TESTING (Closed)
Patch Set: temp Created 3 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/storage/DOMWindowStorageController.cpp
diff --git a/third_party/WebKit/Source/modules/storage/DOMWindowStorageController.cpp b/third_party/WebKit/Source/modules/storage/DOMWindowStorageController.cpp
index e9deb8ae286b79d0c7ce49dc13e84e30f150b072..b1f2f545ff4bd2e8df7dbb798f593dee67a1eeed 100644
--- a/third_party/WebKit/Source/modules/storage/DOMWindowStorageController.cpp
+++ b/third_party/WebKit/Source/modules/storage/DOMWindowStorageController.cpp
@@ -47,8 +47,9 @@ void DOMWindowStorageController::didAddEventListener(
// to receive notifications about storage events that might be triggered in
// other processes. Rather than subscribe to these notifications explicitly,
// we subscribe to them implicitly to simplify the work done by the system.
- DOMWindowStorage::from(*window).localStorage(IGNORE_EXCEPTION);
- DOMWindowStorage::from(*window).sessionStorage(IGNORE_EXCEPTION);
+ DOMWindowStorage::from(*window).localStorage(IGNORE_EXCEPTION_FOR_TESTING);
+ DOMWindowStorage::from(*window).sessionStorage(
+ IGNORE_EXCEPTION_FOR_TESTING);
}
}

Powered by Google App Engine
This is Rietveld 408576698