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

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

Issue 325143002: Oilpan: Prepare moving inspector script related classes to oilpan. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed Created 6 years, 6 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
« no previous file with comments | « Source/core/workers/SharedWorkerGlobalScope.cpp ('k') | Source/core/workers/WorkerConsole.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 static PassRefPtrWillBeRawPtr<WorkerConsole> create(WorkerGlobalScope* scope ) 50 static PassRefPtrWillBeRawPtr<WorkerConsole> create(WorkerGlobalScope* scope )
51 { 51 {
52 return adoptRefWillBeNoop(new WorkerConsole(scope)); 52 return adoptRefWillBeNoop(new WorkerConsole(scope));
53 } 53 }
54 virtual ~WorkerConsole(); 54 virtual ~WorkerConsole();
55 55
56 virtual void trace(Visitor*) OVERRIDE; 56 virtual void trace(Visitor*) OVERRIDE;
57 57
58 protected: 58 protected:
59 virtual ExecutionContext* context() OVERRIDE; 59 virtual ExecutionContext* context() OVERRIDE;
60 virtual void reportMessageToClient(MessageLevel, const String& message, Pass RefPtr<ScriptCallStack>) OVERRIDE; 60 virtual void reportMessageToClient(MessageLevel, const String& message, Pass RefPtrWillBeRawPtr<ScriptCallStack>) OVERRIDE;
61 61
62 private: 62 private:
63 explicit WorkerConsole(WorkerGlobalScope*); 63 explicit WorkerConsole(WorkerGlobalScope*);
64 64
65 RawPtrWillBeMember<WorkerGlobalScope> m_scope; 65 RawPtrWillBeMember<WorkerGlobalScope> m_scope;
66 }; 66 };
67 67
68 } // namespace WebCore 68 } // namespace WebCore
69 69
70 #endif // WorkerConsole_h 70 #endif // WorkerConsole_h
OLDNEW
« no previous file with comments | « Source/core/workers/SharedWorkerGlobalScope.cpp ('k') | Source/core/workers/WorkerConsole.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698