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

Unified Diff: mojo/public/bindings/js/support.cc

Issue 100573003: [Mojo] Move JS bindings out of public (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix header guards Created 7 years 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 | « mojo/public/bindings/js/support.h ('k') | mojo/public/bindings/js/test/hexdump.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/public/bindings/js/support.cc
diff --git a/mojo/public/bindings/js/support.cc b/mojo/public/bindings/js/support.cc
deleted file mode 100644
index cf2f1c86ad7d4dd429216957159b4cf053468b08..0000000000000000000000000000000000000000
--- a/mojo/public/bindings/js/support.cc
+++ /dev/null
@@ -1,71 +0,0 @@
-// Copyright 2013 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "mojo/public/bindings/js/support.h"
-
-#include "base/bind.h"
-#include "gin/arguments.h"
-#include "gin/converter.h"
-#include "gin/function_template.h"
-#include "gin/object_template_builder.h"
-#include "gin/per_isolate_data.h"
-#include "gin/public/wrapper_info.h"
-#include "gin/wrappable.h"
-#include "mojo/public/bindings/js/handle.h"
-#include "mojo/public/bindings/js/waiting_callback.h"
-#include "mojo/public/bindings/lib/bindings_support.h"
-
-namespace mojo {
-namespace js {
-
-namespace {
-
-WaitingCallback* AsyncWait(const gin::Arguments& args, mojo::Handle handle,
- MojoWaitFlags flags,
- v8::Handle<v8::Function> callback) {
- scoped_refptr<WaitingCallback> waiting_callback =
- WaitingCallback::Create(args.isolate(), callback);
-
- BindingsSupport::AsyncWaitID wait_id = BindingsSupport::Get()->AsyncWait(
- handle, flags, waiting_callback.get());
-
- waiting_callback->set_wait_id(wait_id);
-
- return waiting_callback.get();
-}
-
-void CancelWait(WaitingCallback* waiting_callback) {
- if (!waiting_callback->wait_id())
- return;
- BindingsSupport::Get()->CancelWait(waiting_callback->wait_id());
- waiting_callback->set_wait_id(NULL);
-}
-
-gin::WrapperInfo g_wrapper_info = { gin::kEmbedderNativeGin };
-
-} // namespace
-
-const char Support::kModuleName[] = "mojo/public/bindings/js/support";
-
-v8::Local<v8::ObjectTemplate> Support::GetTemplate(v8::Isolate* isolate) {
- gin::PerIsolateData* data = gin::PerIsolateData::From(isolate);
- v8::Local<v8::ObjectTemplate> templ = data->GetObjectTemplate(
- &g_wrapper_info);
-
- if (templ.IsEmpty()) {
- WaitingCallback::EnsureRegistered(isolate);
-
- templ = gin::ObjectTemplateBuilder(isolate)
- .SetMethod("asyncWait", AsyncWait)
- .SetMethod("cancelWait", CancelWait)
- .Build();
-
- data->SetObjectTemplate(&g_wrapper_info, templ);
- }
-
- return templ;
-}
-
-} // namespace js
-} // namespace mojo
« no previous file with comments | « mojo/public/bindings/js/support.h ('k') | mojo/public/bindings/js/test/hexdump.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698