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

Side by Side Diff: Source/core/workers/WorkerConsole.cpp

Issue 1115923002: workers: Rename WorkerThread to WorkerScript. Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: . Created 5 years, 7 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2007 Apple Inc. All rights reserved. 2 * Copyright (C) 2007 Apple Inc. All rights reserved.
3 * Copyright (C) 2013 Google Inc. All rights reserved. 3 * Copyright (C) 2013 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 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 17 matching lines...) Expand all
28 */ 28 */
29 29
30 #include "config.h" 30 #include "config.h"
31 31
32 #include "core/workers/WorkerConsole.h" 32 #include "core/workers/WorkerConsole.h"
33 33
34 #include "core/inspector/ConsoleMessage.h" 34 #include "core/inspector/ConsoleMessage.h"
35 #include "core/inspector/ScriptCallStack.h" 35 #include "core/inspector/ScriptCallStack.h"
36 #include "core/workers/WorkerGlobalScope.h" 36 #include "core/workers/WorkerGlobalScope.h"
37 #include "core/workers/WorkerReportingProxy.h" 37 #include "core/workers/WorkerReportingProxy.h"
38 #include "core/workers/WorkerThread.h" 38 #include "core/workers/WorkerScript.h"
39 39
40 40
41 namespace blink { 41 namespace blink {
42 42
43 WorkerConsole::WorkerConsole(WorkerGlobalScope* scope) 43 WorkerConsole::WorkerConsole(WorkerGlobalScope* scope)
44 : m_scope(scope) 44 : m_scope(scope)
45 { 45 {
46 } 46 }
47 47
48 WorkerConsole::~WorkerConsole() 48 WorkerConsole::~WorkerConsole()
(...skipping 19 matching lines...) Expand all
68 68
69 DEFINE_TRACE(WorkerConsole) 69 DEFINE_TRACE(WorkerConsole)
70 { 70 {
71 visitor->trace(m_scope); 71 visitor->trace(m_scope);
72 ConsoleBase::trace(visitor); 72 ConsoleBase::trace(visitor);
73 } 73 }
74 74
75 // FIXME: add memory getter 75 // FIXME: add memory getter
76 76
77 } // namespace blink 77 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698