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

Side by Side Diff: third_party/WebKit/Source/core/dom/ExecutionContext.h

Issue 2137013002: Make WebTraceLocation be an alias of tracked_objects::Location (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 5 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) 2008 Apple Inc. All Rights Reserved. 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved.
3 * Copyright (C) 2012 Google Inc. All Rights Reserved. 3 * Copyright (C) 2012 Google Inc. All Rights Reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 20 matching lines...) Expand all
31 #include "core/CoreExport.h" 31 #include "core/CoreExport.h"
32 #include "core/dom/ContextLifecycleNotifier.h" 32 #include "core/dom/ContextLifecycleNotifier.h"
33 #include "core/dom/ContextLifecycleObserver.h" 33 #include "core/dom/ContextLifecycleObserver.h"
34 #include "core/dom/SecurityContext.h" 34 #include "core/dom/SecurityContext.h"
35 #include "core/dom/SuspendableTask.h" 35 #include "core/dom/SuspendableTask.h"
36 #include "core/fetch/AccessControlStatus.h" 36 #include "core/fetch/AccessControlStatus.h"
37 #include "platform/Supplementable.h" 37 #include "platform/Supplementable.h"
38 #include "platform/heap/Handle.h" 38 #include "platform/heap/Handle.h"
39 #include "platform/weborigin/KURL.h" 39 #include "platform/weborigin/KURL.h"
40 #include "platform/weborigin/ReferrerPolicy.h" 40 #include "platform/weborigin/ReferrerPolicy.h"
41 #include "public/platform/WebTraceLocation.h"
41 #include "wtf/Deque.h" 42 #include "wtf/Deque.h"
42 #include "wtf/Noncopyable.h" 43 #include "wtf/Noncopyable.h"
43 #include <memory> 44 #include <memory>
44 45
45 namespace blink { 46 namespace blink {
46 47
47 class ActiveDOMObject; 48 class ActiveDOMObject;
48 class ConsoleMessage; 49 class ConsoleMessage;
49 class DOMTimerCoordinator; 50 class DOMTimerCoordinator;
50 class ErrorEvent; 51 class ErrorEvent;
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 186
186 Deque<std::unique_ptr<SuspendableTask>> m_suspendedTasks; 187 Deque<std::unique_ptr<SuspendableTask>> m_suspendedTasks;
187 bool m_isRunSuspendableTasksScheduled; 188 bool m_isRunSuspendableTasksScheduled;
188 189
189 ReferrerPolicy m_referrerPolicy; 190 ReferrerPolicy m_referrerPolicy;
190 }; 191 };
191 192
192 } // namespace blink 193 } // namespace blink
193 194
194 #endif // ExecutionContext_h 195 #endif // ExecutionContext_h
OLDNEW
« no previous file with comments | « content/shell/renderer/layout_test/blink_test_runner.cc ('k') | third_party/WebKit/Source/core/dom/ScriptRunner.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698