| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 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 23 matching lines...) Expand all Loading... |
| 34 #include "core/dom/ExecutionContext.h" | 34 #include "core/dom/ExecutionContext.h" |
| 35 #include "core/dom/ExecutionContextTask.h" | 35 #include "core/dom/ExecutionContextTask.h" |
| 36 #include "wtf/text/WTFString.h" | 36 #include "wtf/text/WTFString.h" |
| 37 | 37 |
| 38 namespace blink { | 38 namespace blink { |
| 39 | 39 |
| 40 namespace { | 40 namespace { |
| 41 | 41 |
| 42 class DispatchCallbackTask FINAL : public ExecutionContextTask { | 42 class DispatchCallbackTask FINAL : public ExecutionContextTask { |
| 43 public: | 43 public: |
| 44 static PassOwnPtr<DispatchCallbackTask> create(PassOwnPtrWillBeRawPtr<String
Callback> callback, const String& data, const String& taskName) | 44 static PassOwnPtr<DispatchCallbackTask> create(StringCallback* callback, con
st String& data, const String& taskName) |
| 45 { | 45 { |
| 46 return adoptPtr(new DispatchCallbackTask(callback, data, taskName)); | 46 return adoptPtr(new DispatchCallbackTask(callback, data, taskName)); |
| 47 } | 47 } |
| 48 | 48 |
| 49 virtual void performTask(ExecutionContext*) OVERRIDE | 49 virtual void performTask(ExecutionContext*) OVERRIDE |
| 50 { | 50 { |
| 51 m_callback->handleEvent(m_data); | 51 m_callback->handleEvent(m_data); |
| 52 } | 52 } |
| 53 | 53 |
| 54 virtual const String& taskNameForInstrumentation() const OVERRIDE | 54 virtual const String& taskNameForInstrumentation() const OVERRIDE |
| 55 { | 55 { |
| 56 return m_taskName; | 56 return m_taskName; |
| 57 } | 57 } |
| 58 | 58 |
| 59 private: | 59 private: |
| 60 DispatchCallbackTask(PassOwnPtrWillBeRawPtr<StringCallback> callback, const
String& data, const String& taskName) | 60 DispatchCallbackTask(StringCallback* callback, const String& data, const Str
ing& taskName) |
| 61 : m_callback(callback) | 61 : m_callback(callback) |
| 62 , m_data(data) | 62 , m_data(data) |
| 63 , m_taskName(taskName) | 63 , m_taskName(taskName) |
| 64 { | 64 { |
| 65 } | 65 } |
| 66 | 66 |
| 67 OwnPtrWillBePersistent<StringCallback> m_callback; | 67 Persistent<StringCallback> m_callback; |
| 68 const String m_data; | 68 const String m_data; |
| 69 const String m_taskName; | 69 const String m_taskName; |
| 70 }; | 70 }; |
| 71 | 71 |
| 72 } // namespace | 72 } // namespace |
| 73 | 73 |
| 74 void StringCallback::scheduleCallback(PassOwnPtrWillBeRawPtr<StringCallback> cal
lback, ExecutionContext* context, const String& data, const String& instrumentat
ionName) | 74 void StringCallback::scheduleCallback(StringCallback* callback, ExecutionContext
* context, const String& data, const String& instrumentationName) |
| 75 { | 75 { |
| 76 context->postTask(DispatchCallbackTask::create(callback, data, instrumentati
onName)); | 76 context->postTask(DispatchCallbackTask::create(callback, data, instrumentati
onName)); |
| 77 } | 77 } |
| 78 | 78 |
| 79 } // namespace blink | 79 } // namespace blink |
| OLD | NEW |