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

Unified Diff: content/public/renderer/chrome_object_extensions_utils.cc

Issue 1385663002: [Contextual Search] Add Mojo-enabled API component. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Reset the Wrapper when the Frame goes away. Created 5 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
Index: content/public/renderer/chrome_object_extensions_utils.cc
diff --git a/content/renderer/chrome_object_extensions_utils.cc b/content/public/renderer/chrome_object_extensions_utils.cc
similarity index 72%
rename from content/renderer/chrome_object_extensions_utils.cc
rename to content/public/renderer/chrome_object_extensions_utils.cc
index d023d29e51d7e462622e8a1a9104c0c0458c5c3b..c2d0dc34b82192fb9c4f7b2e365492de5a9afdf1 100644
--- a/content/renderer/chrome_object_extensions_utils.cc
+++ b/content/public/renderer/chrome_object_extensions_utils.cc
@@ -2,15 +2,15 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "content/renderer/chrome_object_extensions_utils.h"
+#include "content/public/renderer/chrome_object_extensions_utils.h"
#include "gin/converter.h"
#include "v8/include/v8.h"
namespace content {
-v8::Local<v8::Object> GetOrCreateChromeObject(
- v8::Isolate* isolate, v8::Local<v8::Object> global) {
+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"));
@@ -23,4 +23,4 @@ v8::Local<v8::Object> GetOrCreateChromeObject(
return chrome;
}
-} // namespace content
+} // namespace content

Powered by Google App Engine
This is Rietveld 408576698