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

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

Issue 342103003: Support UseCounter in dedicated workers. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 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 30 matching lines...) Expand all
41 class DedicatedWorkerThread; 41 class DedicatedWorkerThread;
42 class WorkerThreadStartupData; 42 class WorkerThreadStartupData;
43 43
44 class DedicatedWorkerGlobalScope FINAL : public WorkerGlobalScope { 44 class DedicatedWorkerGlobalScope FINAL : public WorkerGlobalScope {
45 public: 45 public:
46 typedef WorkerGlobalScope Base; 46 typedef WorkerGlobalScope Base;
47 static PassRefPtrWillBeRawPtr<DedicatedWorkerGlobalScope> create(DedicatedWo rkerThread*, PassOwnPtrWillBeRawPtr<WorkerThreadStartupData>, double timeOrigin) ; 47 static PassRefPtrWillBeRawPtr<DedicatedWorkerGlobalScope> create(DedicatedWo rkerThread*, PassOwnPtrWillBeRawPtr<WorkerThreadStartupData>, double timeOrigin) ;
48 virtual ~DedicatedWorkerGlobalScope(); 48 virtual ~DedicatedWorkerGlobalScope();
49 49
50 virtual bool isDedicatedWorkerGlobalScope() const OVERRIDE { return true; } 50 virtual bool isDedicatedWorkerGlobalScope() const OVERRIDE { return true; }
51 virtual void countFeature(UseCounter::Feature) const OVERRIDE;
51 52
52 // Overridden to allow us to check our pending activity after executing impo rted script. 53 // Overridden to allow us to check our pending activity after executing impo rted script.
53 virtual void importScripts(const Vector<String>& urls, ExceptionState&) OVER RIDE; 54 virtual void importScripts(const Vector<String>& urls, ExceptionState&) OVER RIDE;
54 55
55 // EventTarget 56 // EventTarget
56 virtual const AtomicString& interfaceName() const OVERRIDE; 57 virtual const AtomicString& interfaceName() const OVERRIDE;
57 58
58 void postMessage(PassRefPtr<SerializedScriptValue>, const MessagePortArray*, ExceptionState&); 59 void postMessage(PassRefPtr<SerializedScriptValue>, const MessagePortArray*, ExceptionState&);
59 60
60 DEFINE_ATTRIBUTE_EVENT_LISTENER(message); 61 DEFINE_ATTRIBUTE_EVENT_LISTENER(message);
61 62
62 DedicatedWorkerThread* thread(); 63 DedicatedWorkerThread* thread() const;
63 64
64 virtual void trace(Visitor*) OVERRIDE; 65 virtual void trace(Visitor*) OVERRIDE;
65 66
66 private: 67 private:
67 DedicatedWorkerGlobalScope(const KURL&, const String& userAgent, DedicatedWo rkerThread*, double timeOrigin, PassOwnPtrWillBeRawPtr<WorkerClients>); 68 DedicatedWorkerGlobalScope(const KURL&, const String& userAgent, DedicatedWo rkerThread*, double timeOrigin, PassOwnPtrWillBeRawPtr<WorkerClients>);
68 }; 69 };
69 70
70 } // namespace WebCore 71 } // namespace WebCore
71 72
72 #endif // DedicatedWorkerGlobalScope_h 73 #endif // DedicatedWorkerGlobalScope_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698