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

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

Issue 2772613002: [instrumentation] Rename InspectorInstrumentation into CoreProbes (Closed)
Patch Set: fix typo Created 3 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 22 matching lines...) Expand all
33 #include "bindings/core/v8/ExceptionState.h" 33 #include "bindings/core/v8/ExceptionState.h"
34 #include "core/events/ApplicationCacheErrorEvent.h" 34 #include "core/events/ApplicationCacheErrorEvent.h"
35 #include "core/events/ProgressEvent.h" 35 #include "core/events/ProgressEvent.h"
36 #include "core/frame/Deprecation.h" 36 #include "core/frame/Deprecation.h"
37 #include "core/frame/HostsUsingFeatures.h" 37 #include "core/frame/HostsUsingFeatures.h"
38 #include "core/frame/LocalFrame.h" 38 #include "core/frame/LocalFrame.h"
39 #include "core/frame/LocalFrameClient.h" 39 #include "core/frame/LocalFrameClient.h"
40 #include "core/frame/Settings.h" 40 #include "core/frame/Settings.h"
41 #include "core/frame/UseCounter.h" 41 #include "core/frame/UseCounter.h"
42 #include "core/inspector/InspectorApplicationCacheAgent.h" 42 #include "core/inspector/InspectorApplicationCacheAgent.h"
43 #include "core/inspector/InspectorInstrumentation.h"
44 #include "core/loader/DocumentLoader.h" 43 #include "core/loader/DocumentLoader.h"
45 #include "core/loader/FrameLoader.h" 44 #include "core/loader/FrameLoader.h"
46 #include "core/loader/appcache/ApplicationCache.h" 45 #include "core/loader/appcache/ApplicationCache.h"
47 #include "core/page/FrameTree.h" 46 #include "core/page/FrameTree.h"
48 #include "core/page/Page.h" 47 #include "core/page/Page.h"
48 #include "core/probe/CoreProbes.h"
49 #include "platform/exported/WrappedResourceRequest.h" 49 #include "platform/exported/WrappedResourceRequest.h"
50 #include "platform/exported/WrappedResourceResponse.h" 50 #include "platform/exported/WrappedResourceResponse.h"
51 #include "platform/weborigin/SecurityOrigin.h" 51 #include "platform/weborigin/SecurityOrigin.h"
52 #include "public/platform/WebURL.h" 52 #include "public/platform/WebURL.h"
53 #include "public/platform/WebURLError.h" 53 #include "public/platform/WebURLError.h"
54 #include "public/platform/WebURLRequest.h" 54 #include "public/platform/WebURLRequest.h"
55 #include "public/platform/WebURLResponse.h" 55 #include "public/platform/WebURLResponse.h"
56 #include "public/platform/WebVector.h" 56 #include "public/platform/WebVector.h"
57 57
58 namespace blink { 58 namespace blink {
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after
345 notifyApplicationCache(kErrorEvent, 0, 0, reason, url.string(), status, 345 notifyApplicationCache(kErrorEvent, 0, 0, reason, url.string(), status,
346 message); 346 message);
347 } 347 }
348 348
349 DEFINE_TRACE(ApplicationCacheHost) { 349 DEFINE_TRACE(ApplicationCacheHost) {
350 visitor->trace(m_domApplicationCache); 350 visitor->trace(m_domApplicationCache);
351 visitor->trace(m_documentLoader); 351 visitor->trace(m_documentLoader);
352 } 352 }
353 353
354 } // namespace blink 354 } // namespace blink
OLDNEW
« 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