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

Unified Diff: Source/WebCore/bindings/dart/custom/DartMessageChannelCustom.cpp

Issue 9350041: Switch to dartgenerator.py for C++ callbacks generation. (Closed) Base URL: svn://svn.chromium.org/multivm/trunk/webkit
Patch Set: Created 8 years, 10 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
Index: Source/WebCore/bindings/dart/custom/DartMessageChannelCustom.cpp
diff --git a/Source/WebCore/bindings/dart/custom/DartInjectedScriptHostCustom.cpp b/Source/WebCore/bindings/dart/custom/DartMessageChannelCustom.cpp
similarity index 57%
rename from Source/WebCore/bindings/dart/custom/DartInjectedScriptHostCustom.cpp
rename to Source/WebCore/bindings/dart/custom/DartMessageChannelCustom.cpp
index 870b56c510f2d386cc061748645f5fe44090aa49..25fac4f415c42313183a444d61c45bf227690b13 100644
--- a/Source/WebCore/bindings/dart/custom/DartInjectedScriptHostCustom.cpp
+++ b/Source/WebCore/bindings/dart/custom/DartMessageChannelCustom.cpp
@@ -1,4 +1,4 @@
-// Copyright 2011, Google Inc.
+// Copyright 2012, Google Inc.
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
@@ -28,70 +28,19 @@
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "config.h"
-#include "DartInjectedScriptHost.h"
+#include "DartMessageChannel.h"
-#if ENABLE(INSPECTOR)
+#include "DartArrayBufferViewCustom.h"
namespace WebCore {
-namespace DartInjectedScriptHostInternal {
+namespace DartMessageChannelInternal {
-void evaluateCallback(Dart_NativeArguments)
+void constructorCallback(Dart_NativeArguments args)
{
- // FIXME: proper implementation.
DART_UNIMPLEMENTED();
}
-void inspectCallback(Dart_NativeArguments)
-{
- // FIXME: proper implementation.
- DART_UNIMPLEMENTED();
}
-void inspectedNodeCallback(Dart_NativeArguments)
-{
- // FIXME: proper implementation.
- DART_UNIMPLEMENTED();
}
-
-void internalConstructorNameCallback(Dart_NativeArguments)
-{
- // FIXME: proper implementation.
- DART_UNIMPLEMENTED();
-}
-
-void isHTMLAllCollectionCallback(Dart_NativeArguments)
-{
- // FIXME: proper implementation.
- DART_UNIMPLEMENTED();
-}
-
-void typeCallback(Dart_NativeArguments)
-{
- // FIXME: proper implementation.
- DART_UNIMPLEMENTED();
-}
-
-void databaseIdCallback(Dart_NativeArguments)
-{
- // FIXME: proper implementation.
- DART_UNIMPLEMENTED();
-}
-
-void storageIdCallback(Dart_NativeArguments)
-{
- // FIXME: proper implementation.
- DART_UNIMPLEMENTED();
-}
-
-void functionLocationCallback(Dart_NativeArguments)
-{
- // FIXME: proper implementation.
- DART_UNIMPLEMENTED();
-}
-
-}
-
-}
-
-#endif // ENABLE(INSPECTOR)

Powered by Google App Engine
This is Rietveld 408576698