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

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: attempt to fix athena build 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 601 matching lines...) Expand 10 before | Expand all | Expand 10 after
612 #if defined(OS_MACOSX) || defined(USE_AURA) 612 #if defined(OS_MACOSX) || defined(USE_AURA)
613 void OnImeCompositionRangeChanged( 613 void OnImeCompositionRangeChanged(
614 const gfx::Range& range, 614 const gfx::Range& range,
615 const std::vector<gfx::Rect>& character_bounds); 615 const std::vector<gfx::Rect>& character_bounds);
616 #endif 616 #endif
617 void OnImeCancelComposition(); 617 void OnImeCancelComposition();
618 void OnLockMouse(bool user_gesture, 618 void OnLockMouse(bool user_gesture,
619 bool last_unlocked_by_target, 619 bool last_unlocked_by_target,
620 bool privileged); 620 bool privileged);
621 void OnUnlockMouse(); 621 void OnUnlockMouse();
622 void OnShowDisambiguationPopup(const gfx::Rect& rect, 622 void OnShowDisambiguationPopup(const gfx::Rect& rect_pixels,
623 const gfx::Size& size, 623 const gfx::Size& size,
624 const cc::SharedBitmapId& id); 624 const cc::SharedBitmapId& id);
625 #if defined(OS_WIN) 625 #if defined(OS_WIN)
626 void OnWindowlessPluginDummyWindowCreated( 626 void OnWindowlessPluginDummyWindowCreated(
627 gfx::NativeViewId dummy_activation_window); 627 gfx::NativeViewId dummy_activation_window);
628 void OnWindowlessPluginDummyWindowDestroyed( 628 void OnWindowlessPluginDummyWindowDestroyed(
629 gfx::NativeViewId dummy_activation_window); 629 gfx::NativeViewId dummy_activation_window);
630 #endif 630 #endif
631 void OnSelectionChanged(const base::string16& text, 631 void OnSelectionChanged(const base::string16& text,
632 size_t offset, 632 size_t offset,
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
848 typedef std::map<int, 848 typedef std::map<int,
849 base::Callback<void(const unsigned char*, size_t)> > PendingSnapshotMap; 849 base::Callback<void(const unsigned char*, size_t)> > PendingSnapshotMap;
850 PendingSnapshotMap pending_browser_snapshots_; 850 PendingSnapshotMap pending_browser_snapshots_;
851 851
852 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl); 852 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl);
853 }; 853 };
854 854
855 } // namespace content 855 } // namespace content
856 856
857 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ 857 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698