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

Side by Side Diff: content/browser/renderer_host/render_widget_host_impl.h

Issue 351683002: Adds link disambiguation popup support to Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: adds mouse event support in popup bubble Created 6 years, 3 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_
7 7
8 #include <deque> 8 #include <deque>
9 #include <list> 9 #include <list>
10 #include <map> 10 #include <map>
(...skipping 598 matching lines...) Expand 10 before | Expand all | Expand 10 after
609 #if defined(OS_MACOSX) || defined(USE_AURA) 609 #if defined(OS_MACOSX) || defined(USE_AURA)
610 void OnImeCompositionRangeChanged( 610 void OnImeCompositionRangeChanged(
611 const gfx::Range& range, 611 const gfx::Range& range,
612 const std::vector<gfx::Rect>& character_bounds); 612 const std::vector<gfx::Rect>& character_bounds);
613 #endif 613 #endif
614 void OnImeCancelComposition(); 614 void OnImeCancelComposition();
615 void OnLockMouse(bool user_gesture, 615 void OnLockMouse(bool user_gesture,
616 bool last_unlocked_by_target, 616 bool last_unlocked_by_target,
617 bool privileged); 617 bool privileged);
618 void OnUnlockMouse(); 618 void OnUnlockMouse();
619 void OnShowDisambiguationPopup(const gfx::Rect& rect, 619 void OnShowDisambiguationPopup(const gfx::Rect& rect_pixels,
620 const gfx::Size& size, 620 const gfx::Size& size,
621 const cc::SharedBitmapId& id); 621 const cc::SharedBitmapId& id);
622 #if defined(OS_WIN) 622 #if defined(OS_WIN)
623 void OnWindowlessPluginDummyWindowCreated( 623 void OnWindowlessPluginDummyWindowCreated(
624 gfx::NativeViewId dummy_activation_window); 624 gfx::NativeViewId dummy_activation_window);
625 void OnWindowlessPluginDummyWindowDestroyed( 625 void OnWindowlessPluginDummyWindowDestroyed(
626 gfx::NativeViewId dummy_activation_window); 626 gfx::NativeViewId dummy_activation_window);
627 #endif 627 #endif
628 void OnSelectionChanged(const base::string16& text, 628 void OnSelectionChanged(const base::string16& text,
629 size_t offset, 629 size_t offset,
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
845 typedef std::map<int, 845 typedef std::map<int,
846 base::Callback<void(const unsigned char*, size_t)> > PendingSnapshotMap; 846 base::Callback<void(const unsigned char*, size_t)> > PendingSnapshotMap;
847 PendingSnapshotMap pending_browser_snapshots_; 847 PendingSnapshotMap pending_browser_snapshots_;
848 848
849 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl); 849 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl);
850 }; 850 };
851 851
852 } // namespace content 852 } // namespace content
853 853
854 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ 854 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698