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

Side by Side Diff: sky/shell/ui/engine.h

Issue 1153543002: Make hit testing work in layout2.dart (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Add missing file Created 5 years, 7 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef SKY_SHELL_UI_ENGINE_H_ 5 #ifndef SKY_SHELL_UI_ENGINE_H_
6 #define SKY_SHELL_UI_ENGINE_H_ 6 #define SKY_SHELL_UI_ENGINE_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "base/memory/weak_ptr.h" 10 #include "base/memory/weak_ptr.h"
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 // WebViewClient methods: 71 // WebViewClient methods:
72 void frameDetached(blink::WebFrame*) override; 72 void frameDetached(blink::WebFrame*) override;
73 void initializeLayerTreeView() override; 73 void initializeLayerTreeView() override;
74 void scheduleVisualUpdate() override; 74 void scheduleVisualUpdate() override;
75 blink::WebScreenInfo screenInfo() override; 75 blink::WebScreenInfo screenInfo() override;
76 blink::ServiceProvider* services() override; 76 blink::ServiceProvider* services() override;
77 void didCreateIsolate(blink::WebLocalFrame* frame, 77 void didCreateIsolate(blink::WebLocalFrame* frame,
78 Dart_Isolate isolate) override; 78 Dart_Isolate isolate) override;
79 79
80 // SkyViewClient methods: 80 // SkyViewClient methods:
81 void SchedulePaint() override; 81 void ScheduleFrame() override;
82 82
83 // Services methods: 83 // Services methods:
84 mojo::NavigatorHost* NavigatorHost() override; 84 mojo::NavigatorHost* NavigatorHost() override;
85 85
86 // NavigatorHost methods: 86 // NavigatorHost methods:
87 void RequestNavigate(mojo::Target target, 87 void RequestNavigate(mojo::Target target,
88 mojo::URLRequestPtr request) override; 88 mojo::URLRequestPtr request) override;
89 void DidNavigateLocally(const mojo::String& url) override; 89 void DidNavigateLocally(const mojo::String& url) override;
90 void RequestNavigateHistory(int32_t delta) override; 90 void RequestNavigateHistory(int32_t delta) override;
91 91
(...skipping 13 matching lines...) Expand all
105 105
106 base::WeakPtrFactory<Engine> weak_factory_; 106 base::WeakPtrFactory<Engine> weak_factory_;
107 107
108 DISALLOW_COPY_AND_ASSIGN(Engine); 108 DISALLOW_COPY_AND_ASSIGN(Engine);
109 }; 109 };
110 110
111 } // namespace shell 111 } // namespace shell
112 } // namespace sky 112 } // namespace sky
113 113
114 #endif // SKY_SHELL_UI_ENGINE_H_ 114 #endif // SKY_SHELL_UI_ENGINE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698