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

Unified Diff: mojo/public/bindings/js/waiting_callback.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/waiting_callback.h ('k') | mojo/public/bindings/sample/sample_service_unittests.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/public/bindings/js/waiting_callback.cc
diff --git a/mojo/public/bindings/js/waiting_callback.cc b/mojo/public/bindings/js/waiting_callback.cc
deleted file mode 100644
index f9d209b13472eceebdfff1d004291e4e81f58b52..0000000000000000000000000000000000000000
--- a/mojo/public/bindings/js/waiting_callback.cc
+++ /dev/null
@@ -1,72 +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/waiting_callback.h"
-
-#include "gin/per_context_data.h"
-#include "gin/per_isolate_data.h"
-
-namespace mojo {
-namespace js {
-
-namespace {
-
-v8::Handle<v8::String> GetHiddenPropertyName(v8::Isolate* isolate) {
- return gin::StringToSymbol(isolate, "::mojo::js::WaitingCallback");
-}
-
-} // namespace
-
-WaitingCallback::WaitingCallback(v8::Isolate* isolate,
- v8::Handle<v8::Function> callback)
- : wait_id_() {
- v8::Handle<v8::Context> context = isolate->GetCurrentContext();
- runner_ = gin::PerContextData::From(context)->runner()->GetWeakPtr();
- GetWrapper(isolate)->SetHiddenValue(GetHiddenPropertyName(isolate), callback);
-}
-
-WaitingCallback::~WaitingCallback() {
- DCHECK(!wait_id_) << "Waiting callback was destroyed before being cancelled.";
-}
-
-scoped_refptr<WaitingCallback> WaitingCallback::Create(
- v8::Isolate* isolate, v8::Handle<v8::Function> callback) {
- return make_scoped_refptr(new WaitingCallback(isolate, callback));
-}
-
-gin::WrapperInfo WaitingCallback::kWrapperInfo = { gin::kEmbedderNativeGin };
-
-gin::WrapperInfo* WaitingCallback::GetWrapperInfo() {
- return &kWrapperInfo;
-}
-
-void WaitingCallback::EnsureRegistered(v8::Isolate* isolate) {
- gin::PerIsolateData* data = gin::PerIsolateData::From(isolate);
- if (!data->GetObjectTemplate(&kWrapperInfo).IsEmpty())
- return;
- v8::Handle<v8::ObjectTemplate> templ = v8::ObjectTemplate::New(isolate);
- templ->SetInternalFieldCount(gin::kNumberOfInternalFields);
- data->SetObjectTemplate(&kWrapperInfo, templ);
-}
-
-void WaitingCallback::OnHandleReady(MojoResult result) {
- wait_id_ = NULL;
-
- if (!runner_)
- return;
-
- gin::Runner::Scope scope(runner_.get());
- v8::Isolate* isolate = runner_->isolate();
-
- v8::Handle<v8::Value> hidden_value =
- GetWrapper(isolate)->GetHiddenValue(GetHiddenPropertyName(isolate));
- v8::Handle<v8::Function> callback;
- CHECK(gin::ConvertFromV8(isolate, hidden_value, &callback));
-
- v8::Handle<v8::Value> args[] = { gin::ConvertToV8(isolate, result) };
- runner_->Call(callback, runner_->global(), 1, args);
-}
-
-} // namespace js
-} // namespace mojo
« no previous file with comments | « mojo/public/bindings/js/waiting_callback.h ('k') | mojo/public/bindings/sample/sample_service_unittests.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698