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

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

Issue 11888003: Differentiate invisible cursor mode and disabled mouse events mode. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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 | Annotate | Revision Log
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_VIEW_HOST_IMPL_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_
7 7
8 #include <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 477 matching lines...) Expand 10 before | Expand all | Expand 10 after
488 void OnDidStartLoading(); 488 void OnDidStartLoading();
489 void OnDidStopLoading(); 489 void OnDidStopLoading();
490 void OnDidChangeLoadProgress(double load_progress); 490 void OnDidChangeLoadProgress(double load_progress);
491 void OnDidDisownOpener(); 491 void OnDidDisownOpener();
492 void OnDocumentAvailableInMainFrame(); 492 void OnDocumentAvailableInMainFrame();
493 void OnDocumentOnLoadCompletedInMainFrame(int32 page_id); 493 void OnDocumentOnLoadCompletedInMainFrame(int32 page_id);
494 void OnContextMenu(const ContextMenuParams& params); 494 void OnContextMenu(const ContextMenuParams& params);
495 void OnToggleFullscreen(bool enter_fullscreen); 495 void OnToggleFullscreen(bool enter_fullscreen);
496 void OnOpenURL(const ViewHostMsg_OpenURL_Params& params); 496 void OnOpenURL(const ViewHostMsg_OpenURL_Params& params);
497 void OnDidContentsPreferredSizeChange(const gfx::Size& new_size); 497 void OnDidContentsPreferredSizeChange(const gfx::Size& new_size);
498 void OnDidChangeScrollOffset();
498 void OnDidChangeScrollbarsForMainFrame(bool has_horizontal_scrollbar, 499 void OnDidChangeScrollbarsForMainFrame(bool has_horizontal_scrollbar,
499 bool has_vertical_scrollbar); 500 bool has_vertical_scrollbar);
500 void OnDidChangeScrollOffsetPinningForMainFrame(bool is_pinned_to_left, 501 void OnDidChangeScrollOffsetPinningForMainFrame(bool is_pinned_to_left,
501 bool is_pinned_to_right); 502 bool is_pinned_to_right);
502 void OnDidChangeNumWheelEvents(int count); 503 void OnDidChangeNumWheelEvents(int count);
503 void OnSelectionChanged(const string16& text, 504 void OnSelectionChanged(const string16& text,
504 size_t offset, 505 size_t offset,
505 const ui::Range& range); 506 const ui::Range& range);
506 void OnSelectionBoundsChanged(const gfx::Rect& start_rect, 507 void OnSelectionBoundsChanged(const gfx::Rect& start_rect,
507 WebKit::WebTextDirection start_direction, 508 WebKit::WebTextDirection start_direction,
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
692 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); 693 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl);
693 }; 694 };
694 695
695 #if defined(COMPILER_MSVC) 696 #if defined(COMPILER_MSVC)
696 #pragma warning(pop) 697 #pragma warning(pop)
697 #endif 698 #endif
698 699
699 } // namespace content 700 } // namespace content
700 701
701 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ 702 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_
OLDNEW
« no previous file with comments | « ash/wm/window_manager_unittest.cc ('k') | content/browser/renderer_host/render_view_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698