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

Unified Diff: chrome/renderer/contextualsearch/contextual_search_wrapper.cc

Issue 1385663002: [Contextual Search] Add Mojo-enabled API component. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Simplify to only track one Renderer process ID. Rebase. Created 5 years, 2 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 | « chrome/renderer/contextualsearch/contextual_search_wrapper.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/contextualsearch/contextual_search_wrapper.cc
diff --git a/chrome/renderer/contextualsearch/contextual_search_wrapper.cc b/chrome/renderer/contextualsearch/contextual_search_wrapper.cc
new file mode 100644
index 0000000000000000000000000000000000000000..16abc45a82f3d8232f9c7a3b7e2653d18183a227
--- /dev/null
+++ b/chrome/renderer/contextualsearch/contextual_search_wrapper.cc
@@ -0,0 +1,87 @@
+// Copyright 2015 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 "chrome/renderer/contextualsearch/contextual_search_wrapper.h"
+
+#include "base/strings/string_util.h"
+#include "gin/arguments.h"
+#include "gin/handle.h"
+#include "gin/object_template_builder.h"
+#include "third_party/WebKit/public/web/WebFrame.h"
+#include "third_party/WebKit/public/web/WebKit.h"
+#include "v8/include/v8.h"
+
+namespace search {
+
+static const char kContextualSearchObjectName[] = "contextualSearch";
+static const char kSetCaptionMethodName[] = "setCaption";
+
+// TODO(donnd): merge with the identical code in
+// chrome_object_extensions_utils (which chrome-android can't access).
+v8::Local<v8::Object> GetOrCreateChromeObject(v8::Isolate* isolate,
+ v8::Local<v8::Object> global) {
+ v8::Local<v8::Object> chrome;
+ v8::Local<v8::Value> chrome_value =
+ global->Get(gin::StringToV8(isolate, "chrome"));
+ if (chrome_value.IsEmpty() || !chrome_value->IsObject()) {
+ chrome = v8::Object::New(isolate);
+ global->Set(gin::StringToSymbol(isolate, "chrome"), chrome);
+ } else {
+ chrome = v8::Local<v8::Object>::Cast(chrome_value);
+ }
+ return chrome;
+}
+
+gin::WrapperInfo ContextualSearchWrapper::kWrapperInfo = {
+ gin::kEmbedderNativeGin};
+
+// static
+void ContextualSearchWrapper::Install(blink::WebFrame* frame) {
+ // TODO(donnd): refactor some of this boilerplate into a reusable
+ // method. This was cribbed from MemoryBenchmarkingExtension.
+ v8::Isolate* isolate = blink::mainThreadIsolate();
+ v8::HandleScope handle_scope(isolate);
+ v8::Local<v8::Context> context = frame->mainWorldScriptContext();
+ if (context.IsEmpty())
+ return;
+
+ v8::Context::Scope context_scope(context);
+ gin::Handle<ContextualSearchWrapper> wrapper =
+ gin::CreateHandle(isolate, new ContextualSearchWrapper());
+ if (wrapper.IsEmpty())
+ return;
+
+ v8::Local<v8::Object> chrome =
+ GetOrCreateChromeObject(isolate, context->Global());
+ chrome->Set(gin::StringToV8(isolate, kContextualSearchObjectName),
+ wrapper.ToV8());
+}
+
+ContextualSearchWrapper::ContextualSearchWrapper() {}
+
+ContextualSearchWrapper::~ContextualSearchWrapper() {}
+
+gin::ObjectTemplateBuilder ContextualSearchWrapper::GetObjectTemplateBuilder(
+ v8::Isolate* isolate) {
+ return gin::Wrappable<ContextualSearchWrapper>::GetObjectTemplateBuilder(
+ isolate)
+ .SetMethod(kSetCaptionMethodName, &ContextualSearchWrapper::SetCaption);
+}
+
+// static
+void ContextualSearchWrapper::SetCaption(gin::Arguments* args) {
jochen (gone - plz use gerrit) 2015/10/07 13:49:25 just use SetCaption(const std::string& caption) -
Donn Denman 2015/10/07 19:33:11 Done.
+ // Need a string argument.
+ std::string caption;
+ if (args->Length() == 1 && args->PeekNext()->IsString()) {
+ args->GetNext(&caption);
+ } else {
+ args->ThrowTypeError("Exactly one String argument is required.");
+ return;
+ }
+
+ DVLOG(0) << "ctxs SetCaption: caption: " << caption;
+ // TODO(donnd): send the caption to the Browser!
+}
+
+} // namespace search
« no previous file with comments | « chrome/renderer/contextualsearch/contextual_search_wrapper.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698