1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
// 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/compiler_specific.h"
#include "base/memory/weak_ptr.h"
#include "mojo/public/cpp/application/lazy_interface_ptr.h"
#include "mojo/public/interfaces/service_provider/service_provider.mojom.h"
#include "mojo/services/public/cpp/view_manager/node_observer.h"
#include "mojo/services/public/cpp/view_manager/view_observer.h"
#include "mojo/services/public/interfaces/navigation/navigation.mojom.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 view_manager::ViewObserver,
public view_manager::NodeObserver {
public:
HTMLDocumentView(ServiceProvider* service_provider,
view_manager::ViewManager* view_manager);
virtual ~HTMLDocumentView();
void AttachToNode(view_manager::Node* node);
void Load(URLResponsePtr response);
private:
// WebViewClient methods:
virtual blink::WebStorageNamespace* createSessionStorageNamespace();
// WebWidgetClient methods:
virtual void didInvalidateRect(const blink::WebRect& rect);
virtual bool allowsBrokenNullLayerTreeView() const;
// WebFrameClient methods:
virtual blink::WebNavigationPolicy decidePolicyForNavigation(
blink::WebLocalFrame* frame, blink::WebDataSource::ExtraData* data,
const blink::WebURLRequest& request, blink::WebNavigationType nav_type,
blink::WebNavigationPolicy default_policy, bool isRedirect) OVERRIDE;
virtual void didAddMessageToConsole(
const blink::WebConsoleMessage& message,
const blink::WebString& source_name,
unsigned source_line,
const blink::WebString& stack_trace) OVERRIDE;
virtual void didNavigateWithinPage(
blink::WebLocalFrame* frame,
const blink::WebHistoryItem& history_item,
blink::WebHistoryCommitType commit_type) OVERRIDE;
// ViewObserver methods:
virtual void OnViewInputEvent(view_manager::View* view,
const EventPtr& event) OVERRIDE;
// NodeObserver methods:
virtual void OnNodeBoundsChanged(view_manager::Node* node,
const gfx::Rect& old_bounds,
const gfx::Rect& new_bounds) OVERRIDE;
virtual void OnNodeDestroyed(view_manager::Node* node) OVERRIDE;
void Repaint();
view_manager::ViewManager* view_manager_;
view_manager::View* view_;
blink::WebView* web_view_;
view_manager::Node* root_;
bool repaint_pending_;
LazyInterfacePtr<navigation::NavigatorHost> navigator_host_;
base::WeakPtrFactory<HTMLDocumentView> weak_factory_;
DISALLOW_COPY_AND_ASSIGN(HTMLDocumentView);
};
} // namespace examples
} // namespace mojo
#endif // MOJO_EXAMPLES_HTML_VIEWER_HTML_DOCUMENT_VIEW_H_
|