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

Unified Diff: Source/modules/webmidi/MIDIErrorCallback.cpp

Issue 14423002: Web MIDI: implement MIDIErrorCallback (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: #include Created 7 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/modules/webmidi/MIDIErrorCallback.h ('k') | Source/modules/webmidi/MIDIErrorCallback.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webmidi/MIDIErrorCallback.cpp
diff --git a/Source/core/dom/StringCallback.cpp b/Source/modules/webmidi/MIDIErrorCallback.cpp
similarity index 68%
copy from Source/core/dom/StringCallback.cpp
copy to Source/modules/webmidi/MIDIErrorCallback.cpp
index c6285b1715bc672f5c9d88b1e964d15101012acf..ff56fe21610d3a271608e37b229070784e06910a 100644
--- a/Source/core/dom/StringCallback.cpp
+++ b/Source/modules/webmidi/MIDIErrorCallback.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2010 Google Inc. All rights reserved.
+ * Copyright (C) 2013 Google Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
@@ -29,10 +29,11 @@
*/
#include "config.h"
-#include "StringCallback.h"
-#include "ScriptExecutionContext.h"
-#include <wtf/text/WTFString.h>
+#include "modules/webmidi/MIDIErrorCallback.h"
+
+#include "core/dom/DOMError.h"
+#include "core/dom/ScriptExecutionContext.h"
namespace WebCore {
@@ -40,32 +41,32 @@ namespace {
class DispatchCallbackTask : public ScriptExecutionContext::Task {
public:
- static PassOwnPtr<DispatchCallbackTask> create(PassRefPtr<StringCallback> callback, const String& data)
+ static PassOwnPtr<DispatchCallbackTask> create(PassRefPtr<MIDIErrorCallback> callback, PassRefPtr<DOMError> error)
{
- return adoptPtr(new DispatchCallbackTask(callback, data));
+ return adoptPtr(new DispatchCallbackTask(callback, error));
}
virtual void performTask(ScriptExecutionContext*)
{
- m_callback->handleEvent(m_data);
+ m_callback->handleEvent(m_error.get());
}
private:
- DispatchCallbackTask(PassRefPtr<StringCallback> callback, const String& data)
- : m_callback(callback)
- , m_data(data)
+ DispatchCallbackTask(PassRefPtr<MIDIErrorCallback> callback, PassRefPtr<DOMError> error)
+ : m_callback(callback)
+ , m_error(error)
{
}
- RefPtr<StringCallback> m_callback;
- const String m_data;
+ RefPtr<MIDIErrorCallback> m_callback;
+ RefPtr<DOMError> m_error;
};
} // namespace
-void StringCallback::scheduleCallback(ScriptExecutionContext* context, const String& data)
+void MIDIErrorCallback::scheduleCallback(ScriptExecutionContext* context, PassRefPtr<DOMError> error)
{
- context->postTask(DispatchCallbackTask::create(this, data));
+ context->postTask(DispatchCallbackTask::create(this, error));
}
} // namespace WebCore
« no previous file with comments | « Source/modules/webmidi/MIDIErrorCallback.h ('k') | Source/modules/webmidi/MIDIErrorCallback.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698