Chromium Code Reviews| Index: components/dom_distiller/content/renderer/distiller_native_javascript.h |
| diff --git a/components/dom_distiller/content/renderer/distiller_native_javascript.h b/components/dom_distiller/content/renderer/distiller_native_javascript.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..45fd67e8bd42d052b2c4ac950f03382438ad0e05 |
| --- /dev/null |
| +++ b/components/dom_distiller/content/renderer/distiller_native_javascript.h |
| @@ -0,0 +1,42 @@ |
| +// 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. |
| + |
| +#ifndef COMPONENTS_DOM_DISTILLER_CONTENT_RENDERER_DISTILLER_NATIVE_JAVASCRIPT_H_ |
| +#define COMPONENTS_DOM_DISTILLER_CONTENT_RENDERER_DISTILLER_NATIVE_JAVASCRIPT_H_ |
| + |
| +#include "components/dom_distiller/content/common/distiller_javascript_service.mojom.h" |
| +#include "content/public/renderer/render_frame.h" |
| +#include "content/public/renderer/render_frame_observer.h" |
| +#include "v8/include/v8.h" |
| + |
| +namespace dom_distiller { |
| + |
| +// This class is the primary interface for custom JavaScript introduced by the |
| +// dom-distiller. Callbacks for JavaScript functionality and the communication |
| +// channel to the browser process are maintained here. |
| +class DistillerNativeJavaScript { |
| + public: |
| + DistillerNativeJavaScript(content::RenderFrame* render_frame); |
| + ~DistillerNativeJavaScript(); |
| + |
| + // Add the "distiller" JavaScript object and its functions to the current |
| + // |RenderFrame|. |
| + void AddJavaScriptObjectToFrame(); |
| + |
| + private: |
| + // Native code for "distiller.echo" in JavaScript. This simply returns the |
| + // provided string. |
| + std::string distillerEcho(const std::string& message); |
|
nyquist
2015/07/27 21:44:33
DistillerEcho
mdjones
2015/07/28 20:53:42
Done.
|
| + |
| + content::RenderFrame* render_frame_; |
| + DistillerJavaScriptServicePtr distiller_js_service_; |
| +}; |
| + |
| +// static |
| +v8::Local<v8::Object> GetOrCreateDistillerObject(v8::Isolate* isolate, |
| + v8::Local<v8::Object> global); |
| + |
| +} // namespace dom_distiller |
| + |
| +#endif // COMPONENTS_DOM_DISTILLER_CONTENT_RENDERER_DISTILLER_NATIVE_JAVASCRIPT_H_ |