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

Unified Diff: third_party/WebKit/Source/core/loader/appcache/ApplicationCacheHost.cpp

Issue 2727633006: DevTools: Rename InspectorInstrumentation:: namespace into probe:: (Closed)
Patch Set: Created 3 years, 10 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/core/loader/appcache/ApplicationCacheHost.cpp
diff --git a/third_party/WebKit/Source/core/loader/appcache/ApplicationCacheHost.cpp b/third_party/WebKit/Source/core/loader/appcache/ApplicationCacheHost.cpp
index a2bb7f77fa7f37316ccbb90e7cc989e1cd11bd7d..b61b7363f2b44bef0bb6753103b14867c5b49f88 100644
--- a/third_party/WebKit/Source/core/loader/appcache/ApplicationCacheHost.cpp
+++ b/third_party/WebKit/Source/core/loader/appcache/ApplicationCacheHost.cpp
@@ -198,8 +198,7 @@ void ApplicationCacheHost::notifyApplicationCache(
int errorStatus,
const String& errorMessage) {
if (id != kProgressEvent) {
- InspectorInstrumentation::updateApplicationCacheStatus(
- m_documentLoader->frame());
+ probe::updateApplicationCacheStatus(m_documentLoader->frame());
}
if (m_defersEvents) {
@@ -288,8 +287,7 @@ bool ApplicationCacheHost::update() {
bool ApplicationCacheHost::swapCache() {
bool success = m_host ? m_host->swapCache() : false;
if (success) {
- InspectorInstrumentation::updateApplicationCacheStatus(
- m_documentLoader->frame());
+ probe::updateApplicationCacheStatus(m_documentLoader->frame());
}
return success;
}
« no previous file with comments | « third_party/WebKit/Source/core/loader/ProgressTracker.cpp ('k') | third_party/WebKit/Source/core/page/ChromeClient.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698