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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
|
// Copyright (c) 2012 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.
#include "content/browser/web_contents/web_contents_view_aura.h"
#include "base/auto_reset.h"
#include "base/utf_string_conversions.h"
#include "content/browser/renderer_host/dip_util.h"
#include "content/browser/renderer_host/overscroll_controller.h"
#include "content/browser/renderer_host/render_view_host_factory.h"
#include "content/browser/renderer_host/render_widget_host_impl.h"
#include "content/browser/web_contents/interstitial_page_impl.h"
#include "content/browser/web_contents/web_contents_impl.h"
#include "content/public/browser/notification_observer.h"
#include "content/public/browser/notification_registrar.h"
#include "content/public/browser/notification_source.h"
#include "content/public/browser/notification_types.h"
#include "content/public/browser/overscroll_configuration.h"
#include "content/public/browser/render_view_host.h"
#include "content/public/browser/render_widget_host.h"
#include "content/public/browser/render_widget_host_view.h"
#include "content/public/browser/web_contents_delegate.h"
#include "content/public/browser/web_contents_view_delegate.h"
#include "content/public/browser/web_drag_dest_delegate.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h"
#include "ui/aura/client/aura_constants.h"
#include "ui/aura/client/drag_drop_client.h"
#include "ui/aura/client/drag_drop_delegate.h"
#include "ui/aura/root_window.h"
#include "ui/aura/root_window_observer.h"
#include "ui/aura/window.h"
#include "ui/aura/window_observer.h"
#include "ui/base/clipboard/custom_data_helper.h"
#include "ui/base/dragdrop/drag_drop_types.h"
#include "ui/base/dragdrop/drag_utils.h"
#include "ui/base/dragdrop/os_exchange_data.h"
#include "ui/base/events/event.h"
#include "ui/base/events/event_utils.h"
#include "ui/base/hit_test.h"
#include "ui/compositor/layer.h"
#include "ui/compositor/scoped_layer_animation_settings.h"
#include "ui/gfx/image/image_skia.h"
#include "ui/gfx/screen.h"
#include "webkit/glue/webdropdata.h"
#if defined(OS_WIN)
#include "ui/base/clipboard/clipboard_util_win.h"
#endif
namespace content {
WebContentsView* CreateWebContentsView(
WebContentsImpl* web_contents,
WebContentsViewDelegate* delegate,
RenderViewHostDelegateView** render_view_host_delegate_view) {
WebContentsViewAura* rv = new WebContentsViewAura(web_contents, delegate);
*render_view_host_delegate_view = rv;
return rv;
}
namespace {
// Listens to all mouse drag events during a drag and drop and sends them to
// the renderer.
class WebDragSourceAura : public MessageLoopForUI::Observer,
public NotificationObserver {
public:
WebDragSourceAura(aura::Window* window, WebContentsImpl* contents)
: window_(window),
contents_(contents) {
MessageLoopForUI::current()->AddObserver(this);
registrar_.Add(this, NOTIFICATION_WEB_CONTENTS_DISCONNECTED,
Source<WebContents>(contents));
}
virtual ~WebDragSourceAura() {
MessageLoopForUI::current()->RemoveObserver(this);
}
// MessageLoop::Observer implementation:
virtual base::EventStatus WillProcessEvent(
const base::NativeEvent& event) OVERRIDE {
return base::EVENT_CONTINUE;
}
virtual void DidProcessEvent(const base::NativeEvent& event) OVERRIDE {
if (!contents_)
return;
ui::EventType type = ui::EventTypeFromNative(event);
RenderViewHost* rvh = NULL;
switch (type) {
case ui::ET_MOUSE_DRAGGED:
rvh = contents_->GetRenderViewHost();
if (rvh) {
gfx::Point screen_loc_in_pixel = ui::EventLocationFromNative(event);
gfx::Point screen_loc = ConvertPointToDIP(rvh->GetView(),
screen_loc_in_pixel);
gfx::Point client_loc = screen_loc;
aura::Window* window = rvh->GetView()->GetNativeView();
aura::Window::ConvertPointToTarget(window->GetRootWindow(),
window, &client_loc);
rvh->DragSourceMovedTo(client_loc.x(), client_loc.y(),
screen_loc.x(), screen_loc.y());
}
break;
default:
break;
}
}
virtual void Observe(int type,
const NotificationSource& source,
const NotificationDetails& details) OVERRIDE {
if (type != NOTIFICATION_WEB_CONTENTS_DISCONNECTED)
return;
// Cancel the drag if it is still in progress.
aura::client::DragDropClient* dnd_client =
aura::client::GetDragDropClient(window_->GetRootWindow());
if (dnd_client && dnd_client->IsDragDropInProgress())
dnd_client->DragCancel();
window_ = NULL;
contents_ = NULL;
}
aura::Window* window() const { return window_; }
private:
aura::Window* window_;
WebContentsImpl* contents_;
NotificationRegistrar registrar_;
DISALLOW_COPY_AND_ASSIGN(WebDragSourceAura);
};
// Utility to fill a ui::OSExchangeDataProvider object from WebDropData.
void PrepareDragData(const WebDropData& drop_data,
ui::OSExchangeData::Provider* provider) {
if (!drop_data.text.string().empty())
provider->SetString(drop_data.text.string());
if (drop_data.url.is_valid())
provider->SetURL(drop_data.url, drop_data.url_title);
if (!drop_data.html.string().empty())
provider->SetHtml(drop_data.html.string(), drop_data.html_base_url);
if (!drop_data.filenames.empty()) {
std::vector<ui::OSExchangeData::FileInfo> filenames;
for (std::vector<WebDropData::FileInfo>::const_iterator it =
drop_data.filenames.begin();
it != drop_data.filenames.end(); ++it) {
filenames.push_back(
ui::OSExchangeData::FileInfo(
FilePath::FromUTF8Unsafe(UTF16ToUTF8(it->path)),
FilePath::FromUTF8Unsafe(UTF16ToUTF8(it->display_name))));
}
provider->SetFilenames(filenames);
}
if (!drop_data.custom_data.empty()) {
Pickle pickle;
ui::WriteCustomDataToPickle(drop_data.custom_data, &pickle);
#if defined(OS_WIN)
provider->SetPickledData(
ui::ClipboardUtil::GetWebCustomDataFormat()->cfFormat, pickle);
#else
provider->SetPickledData(ui::Clipboard::GetWebCustomDataFormatType(),
pickle);
#endif
}
}
// Utility to fill a WebDropData object from ui::OSExchangeData.
void PrepareWebDropData(WebDropData* drop_data,
const ui::OSExchangeData& data) {
string16 plain_text;
data.GetString(&plain_text);
if (!plain_text.empty())
drop_data->text = NullableString16(plain_text, false);
GURL url;
string16 url_title;
data.GetURLAndTitle(&url, &url_title);
if (url.is_valid()) {
drop_data->url = url;
drop_data->url_title = url_title;
}
string16 html;
GURL html_base_url;
data.GetHtml(&html, &html_base_url);
if (!html.empty())
drop_data->html = NullableString16(html, false);
if (html_base_url.is_valid())
drop_data->html_base_url = html_base_url;
std::vector<ui::OSExchangeData::FileInfo> files;
if (data.GetFilenames(&files) && !files.empty()) {
for (std::vector<ui::OSExchangeData::FileInfo>::const_iterator
it = files.begin(); it != files.end(); ++it) {
drop_data->filenames.push_back(
WebDropData::FileInfo(
UTF8ToUTF16(it->path.AsUTF8Unsafe()),
UTF8ToUTF16(it->display_name.AsUTF8Unsafe())));
}
}
Pickle pickle;
#if defined(OS_WIN)
if (data.GetPickledData(ui::ClipboardUtil::GetWebCustomDataFormat()->cfFormat,
&pickle))
#else
if (data.GetPickledData(ui::Clipboard::GetWebCustomDataFormatType(),
&pickle))
#endif
ui::ReadCustomDataIntoMap(pickle.data(), pickle.size(),
&drop_data->custom_data);
}
// Utilities to convert between WebKit::WebDragOperationsMask and
// ui::DragDropTypes.
int ConvertFromWeb(WebKit::WebDragOperationsMask ops) {
int drag_op = ui::DragDropTypes::DRAG_NONE;
if (ops & WebKit::WebDragOperationCopy)
drag_op |= ui::DragDropTypes::DRAG_COPY;
if (ops & WebKit::WebDragOperationMove)
drag_op |= ui::DragDropTypes::DRAG_MOVE;
if (ops & WebKit::WebDragOperationLink)
drag_op |= ui::DragDropTypes::DRAG_LINK;
return drag_op;
}
WebKit::WebDragOperationsMask ConvertToWeb(int drag_op) {
int web_drag_op = WebKit::WebDragOperationNone;
if (drag_op & ui::DragDropTypes::DRAG_COPY)
web_drag_op |= WebKit::WebDragOperationCopy;
if (drag_op & ui::DragDropTypes::DRAG_MOVE)
web_drag_op |= WebKit::WebDragOperationMove;
if (drag_op & ui::DragDropTypes::DRAG_LINK)
web_drag_op |= WebKit::WebDragOperationLink;
return (WebKit::WebDragOperationsMask) web_drag_op;
}
int ConvertAuraEventFlagsToWebInputEventModifiers(int aura_event_flags) {
int web_input_event_modifiers = 0;
if (aura_event_flags & ui::EF_SHIFT_DOWN)
web_input_event_modifiers |= WebKit::WebInputEvent::ShiftKey;
if (aura_event_flags & ui::EF_CONTROL_DOWN)
web_input_event_modifiers |= WebKit::WebInputEvent::ControlKey;
if (aura_event_flags & ui::EF_ALT_DOWN)
web_input_event_modifiers |= WebKit::WebInputEvent::AltKey;
if (aura_event_flags & ui::EF_COMMAND_DOWN)
web_input_event_modifiers |= WebKit::WebInputEvent::MetaKey;
return web_input_event_modifiers;
}
// Given the scrolled amount (|scroll|) and the threshold (|threshold|), returns
// the amount the window should be translated.
int GetResistedScrollAmount(int scroll, int threshold) {
DCHECK_GE(scroll, 0);
if (scroll <= threshold)
return scroll / 2;
// Start resisting after the threshold.
int resisted = threshold / 2;
float extra = scroll - threshold;
while ((extra /= 1.3f) > 1.f)
resisted += 1;
return resisted;
}
} // namespace
class WebContentsViewAura::WindowObserver
: public aura::WindowObserver, public aura::RootWindowObserver {
public:
explicit WindowObserver(WebContentsViewAura* view)
: view_(view),
parent_(NULL) {
view_->window_->AddObserver(this);
}
virtual ~WindowObserver() {
view_->window_->RemoveObserver(this);
if (view_->window_->GetRootWindow())
view_->window_->GetRootWindow()->RemoveRootWindowObserver(this);
if (parent_)
parent_->RemoveObserver(this);
}
// Overridden from aura::WindowObserver:
virtual void OnWindowParentChanged(aura::Window* window,
aura::Window* parent) OVERRIDE {
if (window == parent_)
return;
if (parent_)
parent_->RemoveObserver(this);
parent_ = parent;
if (parent)
parent->AddObserver(this);
}
virtual void OnWindowBoundsChanged(aura::Window* window,
const gfx::Rect& old_bounds,
const gfx::Rect& new_bounds) {
SendScreenRects();
}
virtual void OnWindowAddedToRootWindow(aura::Window* window) OVERRIDE {
if (window != parent_)
window->GetRootWindow()->AddRootWindowObserver(this);
}
virtual void OnWindowRemovingFromRootWindow(aura::Window* window) OVERRIDE {
if (window != parent_)
window->GetRootWindow()->RemoveRootWindowObserver(this);
}
// Overridden RootWindowObserver:
virtual void OnRootWindowMoved(const aura::RootWindow* root,
const gfx::Point& new_origin) OVERRIDE {
// This is for the desktop case (i.e. Aura desktop).
SendScreenRects();
}
private:
void SendScreenRects() {
RenderWidgetHostImpl::From(view_->web_contents_->GetRenderViewHost())->
SendScreenRects();
}
WebContentsViewAura* view_;
// We cache the old parent so that we can unregister when it's not the parent
// anymore.
aura::Window* parent_;
DISALLOW_COPY_AND_ASSIGN(WindowObserver);
};
////////////////////////////////////////////////////////////////////////////////
// WebContentsViewAura, public:
WebContentsViewAura::WebContentsViewAura(
WebContentsImpl* web_contents,
WebContentsViewDelegate* delegate)
: web_contents_(web_contents),
delegate_(delegate),
current_drag_op_(WebKit::WebDragOperationNone),
drag_dest_delegate_(NULL),
current_rvh_for_drag_(NULL),
current_overscroll_gesture_(OVERSCROLL_NONE),
completed_overscroll_gesture_(OVERSCROLL_NONE) {
}
////////////////////////////////////////////////////////////////////////////////
// WebContentsViewAura, private:
WebContentsViewAura::~WebContentsViewAura() {
if (!window_)
return;
window_observer_.reset();
// Window needs a valid delegate during its destructor, so we explicitly
// delete it here.
window_.reset();
}
void WebContentsViewAura::SizeChangedCommon(const gfx::Size& size) {
if (web_contents_->GetInterstitialPage())
web_contents_->GetInterstitialPage()->SetSize(size);
RenderWidgetHostView* rwhv =
web_contents_->GetRenderWidgetHostView();
if (rwhv)
rwhv->SetSize(size);
}
void WebContentsViewAura::EndDrag(WebKit::WebDragOperationsMask ops) {
aura::RootWindow* root_window = GetNativeView()->GetRootWindow();
gfx::Point screen_loc =
gfx::Screen::GetScreenFor(GetNativeView())->GetCursorScreenPoint();
gfx::Point client_loc = screen_loc;
RenderViewHost* rvh = web_contents_->GetRenderViewHost();
aura::Window* window = rvh->GetView()->GetNativeView();
aura::Window::ConvertPointToTarget(root_window, window, &client_loc);
rvh->DragSourceEndedAt(client_loc.x(), client_loc.y(), screen_loc.x(),
screen_loc.y(), ops);
}
void WebContentsViewAura::PrepareOverscrollWindow() {
// If there is an existing |overscroll_window_| which is in the middle of an
// animation, then destroying the window here causes the animation to be
// completed immidiately, which triggers |OnImplicitAnimationsCompleted()|
// callback, and that tries to reset |overscroll_window_| again, causing a
// double-free. So use a temporary variable here.
if (overscroll_window_.get()) {
base::AutoReset<OverscrollMode> reset_state(¤t_overscroll_gesture_,
current_overscroll_gesture_);
scoped_ptr<aura::Window> reset_window(overscroll_window_.release());
}
overscroll_window_.reset(new aura::Window(NULL));
overscroll_window_->SetType(aura::client::WINDOW_TYPE_CONTROL);
overscroll_window_->SetTransparent(false);
overscroll_window_->Init(ui::LAYER_SOLID_COLOR);
overscroll_window_->layer()->SetMasksToBounds(true);
overscroll_window_->layer()->SetColor(SK_ColorGRAY);
overscroll_window_->SetName("OverscrollOverlay");
window_->AddChild(overscroll_window_.get());
gfx::Rect bounds = gfx::Rect(window_->bounds().size());
if (current_overscroll_gesture_ == OVERSCROLL_WEST &&
web_contents_->GetController().CanGoForward()) {
// The overlay will be sliding in from the right edge towards the left.
// So position the overlay window on the right of the window.
bounds.Offset(bounds.width(), 0);
}
if (GetWindowToAnimateForOverscroll() == overscroll_window_.get())
window_->StackChildAbove(overscroll_window_.get(), GetContentNativeView());
else
window_->StackChildBelow(overscroll_window_.get(), GetContentNativeView());
overscroll_window_->SetBounds(bounds);
overscroll_window_->Show();
}
void WebContentsViewAura::PrepareContentWindowForOverscroll() {
aura::Window* content = GetContentNativeView();
if (!content)
return;
ui::ScopedLayerAnimationSettings settings(content->layer()->GetAnimator());
settings.SetPreemptionStrategy(ui::LayerAnimator::IMMEDIATELY_SET_NEW_TARGET);
content->SetTransform(gfx::Transform());
}
void WebContentsViewAura::ResetOverscrollTransform() {
if (!web_contents_->GetRenderWidgetHostView())
return;
aura::Window* target = GetWindowToAnimateForOverscroll();
ui::ScopedLayerAnimationSettings settings(target->layer()->GetAnimator());
settings.SetPreemptionStrategy(ui::LayerAnimator::REPLACE_QUEUED_ANIMATIONS);
settings.SetTweenType(ui::Tween::EASE_OUT);
settings.AddObserver(this);
target->SetTransform(gfx::Transform());
}
void WebContentsViewAura::CompleteOverscrollNavigation(OverscrollMode mode) {
if (!web_contents_->GetRenderWidgetHostView())
return;
// Animate out the current view first. Navigate to the requested history at
// the end of the animation.
if (current_overscroll_gesture_ == OVERSCROLL_NONE)
return;
completed_overscroll_gesture_ = mode;
aura::Window* target = GetWindowToAnimateForOverscroll();
ui::ScopedLayerAnimationSettings settings(target->layer()->GetAnimator());
settings.SetPreemptionStrategy(ui::LayerAnimator::REPLACE_QUEUED_ANIMATIONS);
settings.SetTweenType(ui::Tween::EASE_OUT);
settings.AddObserver(this);
gfx::Transform transform;
int content_width =
web_contents_->GetRenderWidgetHostView()->GetViewBounds().width();
transform.Translate(mode == OVERSCROLL_WEST ? -content_width : content_width,
0);
target->SetTransform(transform);
}
aura::Window* WebContentsViewAura::GetWindowToAnimateForOverscroll() {
if (current_overscroll_gesture_ == OVERSCROLL_NONE)
return NULL;
if (current_overscroll_gesture_ == OVERSCROLL_WEST &&
web_contents_->GetController().CanGoForward()) {
return overscroll_window_.get();
}
return GetContentNativeView();
}
gfx::Vector2d WebContentsViewAura::GetTranslationForOverscroll(int delta_x,
int delta_y) {
if (current_overscroll_gesture_ == OVERSCROLL_NORTH ||
current_overscroll_gesture_ == OVERSCROLL_SOUTH) {
// For vertical overscroll, always do a resisted drag.
const float threshold = GetOverscrollConfig(
OVERSCROLL_CONFIG_VERT_RESIST_AFTER);
int scroll = GetResistedScrollAmount(abs(delta_y),
static_cast<int>(threshold));
return gfx::Vector2d(0, delta_y < 0 ? -scroll : scroll);
}
// For horizontal overscroll, scroll freely if a navigation is possible. Do a
// resistive scroll otherwise.
const NavigationControllerImpl& controller = web_contents_->GetController();
if (current_overscroll_gesture_ == OVERSCROLL_WEST) {
if (controller.CanGoForward())
return gfx::Vector2d(delta_x, 0);
} else if (current_overscroll_gesture_ == OVERSCROLL_EAST) {
if (controller.CanGoBack())
return gfx::Vector2d(delta_x, 0);
}
const float threshold = GetOverscrollConfig(
OVERSCROLL_CONFIG_HORIZ_RESIST_AFTER);
int scroll = GetResistedScrollAmount(abs(delta_x),
static_cast<int>(threshold));
return gfx::Vector2d(delta_x < 0 ? -scroll : scroll, 0);
}
////////////////////////////////////////////////////////////////////////////////
// WebContentsViewAura, WebContentsView implementation:
void WebContentsViewAura::CreateView(
const gfx::Size& initial_size, gfx::NativeView context) {
// NOTE: we ignore |initial_size| since in some cases it's wrong (such as
// if the bookmark bar is not shown and you create a new tab). The right
// value is set shortly after this, so its safe to ignore.
window_.reset(new aura::Window(this));
window_->set_owned_by_parent(false);
window_->SetType(aura::client::WINDOW_TYPE_CONTROL);
window_->SetTransparent(false);
window_->Init(ui::LAYER_NOT_DRAWN);
// TODO(mukai, erg): Should use a non-NULL value later when the DCHECK is
// turned on in SetDefaultParentByRootWindow().
aura::RootWindow* target_root = context ? context->GetRootWindow() : NULL;
window_->SetDefaultParentByRootWindow(target_root, gfx::Rect());
window_->layer()->SetMasksToBounds(true);
window_->SetName("WebContentsViewAura");
window_observer_.reset(new WindowObserver(this));
// delegate_->GetDragDestDelegate() creates a new delegate on every call.
// Hence, we save a reference to it locally. Similar model is used on other
// platforms as well.
if (delegate_.get())
drag_dest_delegate_ = delegate_->GetDragDestDelegate();
}
RenderWidgetHostView* WebContentsViewAura::CreateViewForWidget(
RenderWidgetHost* render_widget_host) {
if (render_widget_host->GetView()) {
// During testing, the view will already be set up in most cases to the
// test view, so we don't want to clobber it with a real one. To verify that
// this actually is happening (and somebody isn't accidentally creating the
// view twice), we check for the RVH Factory, which will be set when we're
// making special ones (which go along with the special views).
DCHECK(RenderViewHostFactory::has_factory());
return render_widget_host->GetView();
}
RenderWidgetHostView* view =
RenderWidgetHostView::CreateViewForWidget(render_widget_host);
view->InitAsChild(NULL);
GetNativeView()->AddChild(view->GetNativeView());
view->Show();
// We listen to drag drop events in the newly created view's window.
aura::client::SetDragDropDelegate(view->GetNativeView(), this);
RenderWidgetHostImpl* host_impl =
RenderWidgetHostImpl::From(render_widget_host);
if (host_impl->overscroll_controller() && web_contents_->GetDelegate() &&
web_contents_->GetDelegate()->CanOverscrollContent())
host_impl->overscroll_controller()->set_delegate(this);
return view;
}
gfx::NativeView WebContentsViewAura::GetNativeView() const {
return window_.get();
}
gfx::NativeView WebContentsViewAura::GetContentNativeView() const {
RenderWidgetHostView* rwhv = web_contents_->GetRenderWidgetHostView();
return rwhv ? rwhv->GetNativeView() : NULL;
}
gfx::NativeWindow WebContentsViewAura::GetTopLevelNativeWindow() const {
return window_->GetToplevelWindow();
}
void WebContentsViewAura::GetContainerBounds(gfx::Rect *out) const {
*out = window_->GetBoundsInScreen();
}
void WebContentsViewAura::SetPageTitle(const string16& title) {
window_->set_title(title);
}
void WebContentsViewAura::OnTabCrashed(base::TerminationStatus status,
int error_code) {
// Set the focus to the parent because neither the view window nor this
// window can handle key events.
if (window_->HasFocus() && window_->parent())
window_->parent()->Focus();
}
void WebContentsViewAura::SizeContents(const gfx::Size& size) {
gfx::Rect bounds = window_->bounds();
if (bounds.size() != size) {
bounds.set_size(size);
window_->SetBounds(bounds);
} else {
// Our size matches what we want but the renderers size may not match.
// Pretend we were resized so that the renderers size is updated too.
SizeChangedCommon(size);
}
}
void WebContentsViewAura::RenderViewCreated(RenderViewHost* host) {
}
void WebContentsViewAura::Focus() {
if (web_contents_->GetInterstitialPage()) {
web_contents_->GetInterstitialPage()->Focus();
return;
}
if (delegate_.get() && delegate_->Focus())
return;
RenderWidgetHostView* rwhv = web_contents_->GetRenderWidgetHostView();
if (rwhv)
rwhv->Focus();
}
void WebContentsViewAura::SetInitialFocus() {
if (web_contents_->FocusLocationBarByDefault())
web_contents_->SetFocusToLocationBar(false);
else
Focus();
}
void WebContentsViewAura::StoreFocus() {
if (delegate_.get())
delegate_->StoreFocus();
}
void WebContentsViewAura::RestoreFocus() {
if (delegate_.get())
delegate_->RestoreFocus();
}
WebDropData* WebContentsViewAura::GetDropData() const {
return current_drop_data_.get();
}
bool WebContentsViewAura::IsEventTracking() const {
return false;
}
void WebContentsViewAura::CloseTabAfterEventTracking() {
}
gfx::Rect WebContentsViewAura::GetViewBounds() const {
return window_->GetBoundsInRootWindow();
}
////////////////////////////////////////////////////////////////////////////////
// WebContentsViewAura, RenderViewHostDelegateView implementation:
void WebContentsViewAura::ShowContextMenu(
const ContextMenuParams& params,
ContextMenuSourceType type) {
if (delegate_.get())
delegate_->ShowContextMenu(params, type);
}
void WebContentsViewAura::ShowPopupMenu(const gfx::Rect& bounds,
int item_height,
double item_font_size,
int selected_item,
const std::vector<WebMenuItem>& items,
bool right_aligned,
bool allow_multiple_selection) {
// External popup menus are only used on Mac and Android.
NOTIMPLEMENTED();
}
void WebContentsViewAura::StartDragging(
const WebDropData& drop_data,
WebKit::WebDragOperationsMask operations,
const gfx::ImageSkia& image,
const gfx::Vector2d& image_offset,
const DragEventSourceInfo& event_info) {
aura::RootWindow* root_window = GetNativeView()->GetRootWindow();
if (!aura::client::GetDragDropClient(root_window))
return;
ui::OSExchangeData::Provider* provider = ui::OSExchangeData::CreateProvider();
PrepareDragData(drop_data, provider);
ui::OSExchangeData data(provider); // takes ownership of |provider|.
if (!image.isNull()) {
drag_utils::SetDragImageOnDataObject(image,
gfx::Size(image.width(), image.height()), image_offset, &data);
}
scoped_ptr<WebDragSourceAura> drag_source(
new WebDragSourceAura(GetNativeView(), web_contents_));
// We need to enable recursive tasks on the message loop so we can get
// updates while in the system DoDragDrop loop.
int result_op = 0;
{
gfx::NativeView content_native_view = GetContentNativeView();
MessageLoop::ScopedNestableTaskAllower allow(MessageLoop::current());
result_op = aura::client::GetDragDropClient(root_window)->StartDragAndDrop(
data, root_window, content_native_view,
event_info.event_location, ConvertFromWeb(operations),
event_info.event_source);
}
// Bail out immediately if the contents view window is gone. Note that it is
// not safe to access any class members after system drag-and-drop returns
// since the class instance might be gone. The local variable |drag_source|
// is still valid and we can check its window property that is set to NULL
// when the contents are gone.
if (!drag_source->window())
return;
EndDrag(ConvertToWeb(result_op));
web_contents_->GetRenderViewHost()->DragSourceSystemDragEnded();
}
void WebContentsViewAura::UpdateDragCursor(WebKit::WebDragOperation operation) {
current_drag_op_ = operation;
}
void WebContentsViewAura::GotFocus() {
if (web_contents_->GetDelegate())
web_contents_->GetDelegate()->WebContentsFocused(web_contents_);
}
void WebContentsViewAura::TakeFocus(bool reverse) {
if (web_contents_->GetDelegate() &&
!web_contents_->GetDelegate()->TakeFocus(web_contents_, reverse) &&
delegate_.get()) {
delegate_->TakeFocus(reverse);
}
}
////////////////////////////////////////////////////////////////////////////////
// WebContentsViewAura, OverscrollControllerDelegate implementation:
void WebContentsViewAura::OnOverscrollUpdate(float delta_x, float delta_y) {
if (current_overscroll_gesture_ == OVERSCROLL_NONE)
return;
aura::Window* target = GetWindowToAnimateForOverscroll();
ui::ScopedLayerAnimationSettings settings(target->layer()->GetAnimator());
settings.SetPreemptionStrategy(ui::LayerAnimator::IMMEDIATELY_SET_NEW_TARGET);
gfx::Vector2d translate = GetTranslationForOverscroll(delta_x, delta_y);
gfx::Transform transform;
transform.Translate(translate.x(), translate.y());
target->SetTransform(transform);
}
void WebContentsViewAura::OnOverscrollComplete(OverscrollMode mode) {
if (mode == OVERSCROLL_WEST) {
NavigationControllerImpl& controller = web_contents_->GetController();
if (controller.CanGoForward()) {
CompleteOverscrollNavigation(mode);
return;
}
} else if (mode == OVERSCROLL_EAST) {
NavigationControllerImpl& controller = web_contents_->GetController();
if (controller.CanGoBack()) {
CompleteOverscrollNavigation(mode);
return;
}
}
ResetOverscrollTransform();
}
void WebContentsViewAura::OnOverscrollModeChange(OverscrollMode old_mode,
OverscrollMode new_mode) {
if (new_mode == OVERSCROLL_NONE) {
// Reset any in-progress overscroll animation first.
ResetOverscrollTransform();
current_overscroll_gesture_ = new_mode;
} else {
// Cleanup state of the content window first, because that can reset the
// value of |current_overscroll_gesture_|.
PrepareContentWindowForOverscroll();
current_overscroll_gesture_ = new_mode;
PrepareOverscrollWindow();
}
completed_overscroll_gesture_ = OVERSCROLL_NONE;
}
////////////////////////////////////////////////////////////////////////////////
// WebContentsViewAura, ui::ImplicitAnimationObserver implementation:
void WebContentsViewAura::OnImplicitAnimationsCompleted() {
if (completed_overscroll_gesture_ == OVERSCROLL_WEST) {
web_contents_->GetController().GoForward();
} else if (completed_overscroll_gesture_ == OVERSCROLL_EAST) {
web_contents_->GetController().GoBack();
}
if (GetContentNativeView())
GetContentNativeView()->SetTransform(gfx::Transform());
current_overscroll_gesture_ = OVERSCROLL_NONE;
completed_overscroll_gesture_ = OVERSCROLL_NONE;
overscroll_window_.reset();
}
////////////////////////////////////////////////////////////////////////////////
// WebContentsViewAura, aura::WindowDelegate implementation:
gfx::Size WebContentsViewAura::GetMinimumSize() const {
return gfx::Size();
}
gfx::Size WebContentsViewAura::GetMaximumSize() const {
return gfx::Size();
}
void WebContentsViewAura::OnBoundsChanged(const gfx::Rect& old_bounds,
const gfx::Rect& new_bounds) {
SizeChangedCommon(new_bounds.size());
if (delegate_.get())
delegate_->SizeChanged(new_bounds.size());
// Constrained web dialogs, need to be kept centered over our content area.
for (size_t i = 0; i < window_->children().size(); i++) {
if (window_->children()[i]->GetProperty(
aura::client::kConstrainedWindowKey)) {
gfx::Rect bounds = window_->children()[i]->bounds();
bounds.set_origin(
gfx::Point((new_bounds.width() - bounds.width()) / 2,
(new_bounds.height() - bounds.height()) / 2));
window_->children()[i]->SetBounds(bounds);
}
}
}
gfx::NativeCursor WebContentsViewAura::GetCursor(const gfx::Point& point) {
return gfx::kNullCursor;
}
int WebContentsViewAura::GetNonClientComponent(const gfx::Point& point) const {
return HTCLIENT;
}
bool WebContentsViewAura::ShouldDescendIntoChildForEventHandling(
aura::Window* child,
const gfx::Point& location) {
return true;
}
bool WebContentsViewAura::CanFocus() {
// Do not take the focus if the render widget host view is gone because
// neither the view window nor this window can handle key events.
return web_contents_->GetRenderWidgetHostView() != NULL;
}
void WebContentsViewAura::OnCaptureLost() {
}
void WebContentsViewAura::OnPaint(gfx::Canvas* canvas) {
}
void WebContentsViewAura::OnDeviceScaleFactorChanged(
float device_scale_factor) {
}
void WebContentsViewAura::OnWindowDestroying() {
// This means the destructor is going to be called soon. If there is an
// overscroll gesture in progress (i.e. |overscroll_window_| is not NULL),
// then destroying it in the WebContentsViewAura destructor can trigger other
// virtual functions to be called (e.g. OnImplicitAnimationsCompleted()). So
// destroy the overscroll window here.
overscroll_window_.reset();
}
void WebContentsViewAura::OnWindowDestroyed() {
}
void WebContentsViewAura::OnWindowTargetVisibilityChanged(bool visible) {
if (visible)
web_contents_->WasShown();
else
web_contents_->WasHidden();
}
bool WebContentsViewAura::HasHitTestMask() const {
return false;
}
void WebContentsViewAura::GetHitTestMask(gfx::Path* mask) const {
}
scoped_refptr<ui::Texture> WebContentsViewAura::CopyTexture() {
// The layer we create doesn't have an external texture, so this should never
// get invoked.
NOTREACHED();
return scoped_refptr<ui::Texture>();
}
////////////////////////////////////////////////////////////////////////////////
// WebContentsViewAura, ui::EventHandler implementation:
void WebContentsViewAura::OnKeyEvent(ui::KeyEvent* event) {
}
void WebContentsViewAura::OnMouseEvent(ui::MouseEvent* event) {
if (!web_contents_->GetDelegate())
return;
switch (event->type()) {
case ui::ET_MOUSE_PRESSED:
web_contents_->GetDelegate()->ActivateContents(web_contents_);
break;
case ui::ET_MOUSE_MOVED:
web_contents_->GetDelegate()->ContentsMouseEvent(
web_contents_,
gfx::Screen::GetScreenFor(GetNativeView())->GetCursorScreenPoint(),
true);
break;
default:
break;
}
}
////////////////////////////////////////////////////////////////////////////////
// WebContentsViewAura, aura::client::DragDropDelegate implementation:
void WebContentsViewAura::OnDragEntered(const ui::DropTargetEvent& event) {
if (drag_dest_delegate_)
drag_dest_delegate_->DragInitialize(web_contents_);
current_drop_data_.reset(new WebDropData());
PrepareWebDropData(current_drop_data_.get(), event.data());
WebKit::WebDragOperationsMask op = ConvertToWeb(event.source_operations());
gfx::Point screen_pt =
gfx::Screen::GetScreenFor(GetNativeView())->GetCursorScreenPoint();
current_rvh_for_drag_ = web_contents_->GetRenderViewHost();
web_contents_->GetRenderViewHost()->DragTargetDragEnter(
*current_drop_data_.get(), event.location(), screen_pt, op,
ConvertAuraEventFlagsToWebInputEventModifiers(event.flags()));
if (drag_dest_delegate_) {
drag_dest_delegate_->OnReceiveDragData(event.data());
drag_dest_delegate_->OnDragEnter();
}
}
int WebContentsViewAura::OnDragUpdated(const ui::DropTargetEvent& event) {
DCHECK(current_rvh_for_drag_);
if (current_rvh_for_drag_ != web_contents_->GetRenderViewHost())
OnDragEntered(event);
WebKit::WebDragOperationsMask op = ConvertToWeb(event.source_operations());
gfx::Point screen_pt =
gfx::Screen::GetScreenFor(GetNativeView())->GetCursorScreenPoint();
web_contents_->GetRenderViewHost()->DragTargetDragOver(
event.location(), screen_pt, op,
ConvertAuraEventFlagsToWebInputEventModifiers(event.flags()));
if (drag_dest_delegate_)
drag_dest_delegate_->OnDragOver();
return ConvertFromWeb(current_drag_op_);
}
void WebContentsViewAura::OnDragExited() {
DCHECK(current_rvh_for_drag_);
if (current_rvh_for_drag_ != web_contents_->GetRenderViewHost())
return;
web_contents_->GetRenderViewHost()->DragTargetDragLeave();
if (drag_dest_delegate_)
drag_dest_delegate_->OnDragLeave();
current_drop_data_.reset();
}
int WebContentsViewAura::OnPerformDrop(const ui::DropTargetEvent& event) {
DCHECK(current_rvh_for_drag_);
if (current_rvh_for_drag_ != web_contents_->GetRenderViewHost())
OnDragEntered(event);
web_contents_->GetRenderViewHost()->DragTargetDrop(
event.location(),
gfx::Screen::GetScreenFor(GetNativeView())->GetCursorScreenPoint(),
ConvertAuraEventFlagsToWebInputEventModifiers(event.flags()));
if (drag_dest_delegate_)
drag_dest_delegate_->OnDrop();
current_drop_data_.reset();
return current_drag_op_;
}
} // namespace content
|