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

Side by Side Diff: third_party/WebKit/Source/modules/notifications/Notification.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) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 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 26 matching lines...) Expand all
37 #include "bindings/modules/v8/V8NotificationAction.h" 37 #include "bindings/modules/v8/V8NotificationAction.h"
38 #include "core/dom/Document.h" 38 #include "core/dom/Document.h"
39 #include "core/dom/DocumentUserGestureToken.h" 39 #include "core/dom/DocumentUserGestureToken.h"
40 #include "core/dom/ExecutionContext.h" 40 #include "core/dom/ExecutionContext.h"
41 #include "core/dom/ScopedWindowFocusAllowedIndicator.h" 41 #include "core/dom/ScopedWindowFocusAllowedIndicator.h"
42 #include "core/dom/TaskRunnerHelper.h" 42 #include "core/dom/TaskRunnerHelper.h"
43 #include "core/events/Event.h" 43 #include "core/events/Event.h"
44 #include "core/frame/Deprecation.h" 44 #include "core/frame/Deprecation.h"
45 #include "core/frame/PerformanceMonitor.h" 45 #include "core/frame/PerformanceMonitor.h"
46 #include "core/frame/UseCounter.h" 46 #include "core/frame/UseCounter.h"
47 #include "core/inspector/InspectorInstrumentation.h" 47 #include "core/probe/CoreProbes.h"
48 #include "modules/notifications/NotificationAction.h" 48 #include "modules/notifications/NotificationAction.h"
49 #include "modules/notifications/NotificationData.h" 49 #include "modules/notifications/NotificationData.h"
50 #include "modules/notifications/NotificationManager.h" 50 #include "modules/notifications/NotificationManager.h"
51 #include "modules/notifications/NotificationOptions.h" 51 #include "modules/notifications/NotificationOptions.h"
52 #include "modules/notifications/NotificationResourcesLoader.h" 52 #include "modules/notifications/NotificationResourcesLoader.h"
53 #include "platform/RuntimeEnabledFeatures.h" 53 #include "platform/RuntimeEnabledFeatures.h"
54 #include "platform/UserGestureIndicator.h" 54 #include "platform/UserGestureIndicator.h"
55 #include "public/platform/Platform.h" 55 #include "public/platform/Platform.h"
56 #include "public/platform/WebSecurityOrigin.h" 56 #include "public/platform/WebSecurityOrigin.h"
57 #include "public/platform/modules/notifications/WebNotificationAction.h" 57 #include "public/platform/modules/notifications/WebNotificationAction.h"
(...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after
422 } 422 }
423 423
424 DEFINE_TRACE(Notification) { 424 DEFINE_TRACE(Notification) {
425 visitor->trace(m_prepareShowMethodRunner); 425 visitor->trace(m_prepareShowMethodRunner);
426 visitor->trace(m_loader); 426 visitor->trace(m_loader);
427 EventTargetWithInlineData::trace(visitor); 427 EventTargetWithInlineData::trace(visitor);
428 ContextLifecycleObserver::trace(visitor); 428 ContextLifecycleObserver::trace(visitor);
429 } 429 }
430 430
431 } // namespace blink 431 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698