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

Unified Diff: mojo/examples/html_viewer/html_document_view.h

Issue 340453002: Mojo: HTML Viewer based on Blink. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: snapshot Created 6 years, 6 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
Index: mojo/examples/html_viewer/html_document_view.h
diff --git a/mojo/examples/html_viewer/html_document_view.h b/mojo/examples/html_viewer/html_document_view.h
new file mode 100644
index 0000000000000000000000000000000000000000..41293d95a54d9c471452d2b0b93558ed53e0412e
--- /dev/null
+++ b/mojo/examples/html_viewer/html_document_view.h
@@ -0,0 +1,62 @@
+// Copyright 2014 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 MOJO_EXAMPLES_HTML_VIEWER_HTML_DOCUMENT_VIEW_H_
+#define MOJO_EXAMPLES_HTML_VIEWER_HTML_DOCUMENT_VIEW_H_
+
+#include "base/memory/weak_ptr.h"
+#include "mojo/services/public/interfaces/network/url_loader.mojom.h"
+#include "third_party/WebKit/public/web/WebFrameClient.h"
+#include "third_party/WebKit/public/web/WebViewClient.h"
+
+namespace mojo {
+
+namespace view_manager {
+class Node;
+class ViewManager;
+class View;
+}
+
+namespace examples {
+
+// A view for a single HTML document.
+class HTMLDocumentView : public blink::WebViewClient,
+ public blink::WebFrameClient {
+ public:
+ explicit HTMLDocumentView(view_manager::ViewManager* view_manager);
+ virtual ~HTMLDocumentView();
+
+ void AttachToNode(view_manager::Node* node);
+
+ void Load(URLResponsePtr response,
+ ScopedDataPipeConsumerHandle response_body_stream);
+
+ private:
+ // WebWidgetClient methods:
+ virtual void didInvalidateRect(const blink::WebRect& rect) OVERRIDE;
+ virtual bool allowsBrokenNullLayerTreeView() const OVERRIDE;
+
+ // WebFrameClient methods:
+ virtual void didAddMessageToConsole(
+ const blink::WebConsoleMessage& message,
+ const blink::WebString& source_name,
+ unsigned source_line,
+ const blink::WebString& stack_trace) OVERRIDE;
+
+ void Repaint();
+
+ view_manager::ViewManager* view_manager_;
+ view_manager::View* view_;
+ blink::WebView* web_view_;
+ bool repaint_pending_;
+
+ base::WeakPtrFactory<HTMLDocumentView> weak_factory_;
+
+ DISALLOW_COPY_AND_ASSIGN(HTMLDocumentView);
+};
+
+} // namespace examples
+} // namespace mojo
+
+#endif // MOJO_EXAMPLES_HTML_VIEWER_HTML_DOCUMENT_VIEW_H_

Powered by Google App Engine
This is Rietveld 408576698