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

Side by Side Diff: third_party/WebKit/Source/modules/eventsource/EventSource.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, 2012 Ericsson AB. All rights reserved. 2 * Copyright (C) 2009, 2012 Ericsson AB. All rights reserved.
3 * Copyright (C) 2010 Apple Inc. All rights reserved. 3 * Copyright (C) 2010 Apple Inc. All rights reserved.
4 * Copyright (C) 2011, Code Aurora Forum. All rights reserved. 4 * Copyright (C) 2011, Code Aurora Forum. 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 7 * modification, are permitted provided that the following conditions
8 * are met: 8 * are met:
9 * 9 *
10 * 1. Redistributions of source code must retain the above copyright 10 * 1. Redistributions of source code must retain the above copyright
(...skipping 30 matching lines...) Expand all
41 #include "core/dom/ExceptionCode.h" 41 #include "core/dom/ExceptionCode.h"
42 #include "core/dom/ExecutionContext.h" 42 #include "core/dom/ExecutionContext.h"
43 #include "core/dom/TaskRunnerHelper.h" 43 #include "core/dom/TaskRunnerHelper.h"
44 #include "core/events/Event.h" 44 #include "core/events/Event.h"
45 #include "core/events/MessageEvent.h" 45 #include "core/events/MessageEvent.h"
46 #include "core/frame/LocalDOMWindow.h" 46 #include "core/frame/LocalDOMWindow.h"
47 #include "core/frame/LocalFrame.h" 47 #include "core/frame/LocalFrame.h"
48 #include "core/frame/UseCounter.h" 48 #include "core/frame/UseCounter.h"
49 #include "core/frame/csp/ContentSecurityPolicy.h" 49 #include "core/frame/csp/ContentSecurityPolicy.h"
50 #include "core/inspector/ConsoleMessage.h" 50 #include "core/inspector/ConsoleMessage.h"
51 #include "core/inspector/InspectorInstrumentation.h"
52 #include "core/loader/ThreadableLoader.h" 51 #include "core/loader/ThreadableLoader.h"
52 #include "core/probe/CoreProbes.h"
53 #include "modules/eventsource/EventSourceInit.h" 53 #include "modules/eventsource/EventSourceInit.h"
54 #include "platform/HTTPNames.h" 54 #include "platform/HTTPNames.h"
55 #include "platform/loader/fetch/ResourceError.h" 55 #include "platform/loader/fetch/ResourceError.h"
56 #include "platform/loader/fetch/ResourceRequest.h" 56 #include "platform/loader/fetch/ResourceRequest.h"
57 #include "platform/loader/fetch/ResourceResponse.h" 57 #include "platform/loader/fetch/ResourceResponse.h"
58 #include "platform/weborigin/SecurityOrigin.h" 58 #include "platform/weborigin/SecurityOrigin.h"
59 #include "public/platform/WebURLRequest.h" 59 #include "public/platform/WebURLRequest.h"
60 #include "wtf/text/StringBuilder.h" 60 #include "wtf/text/StringBuilder.h"
61 61
62 namespace blink { 62 namespace blink {
(...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after
375 375
376 DEFINE_TRACE(EventSource) { 376 DEFINE_TRACE(EventSource) {
377 visitor->trace(m_parser); 377 visitor->trace(m_parser);
378 visitor->trace(m_loader); 378 visitor->trace(m_loader);
379 EventTargetWithInlineData::trace(visitor); 379 EventTargetWithInlineData::trace(visitor);
380 ContextLifecycleObserver::trace(visitor); 380 ContextLifecycleObserver::trace(visitor);
381 EventSourceParser::Client::trace(visitor); 381 EventSourceParser::Client::trace(visitor);
382 } 382 }
383 383
384 } // namespace blink 384 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698