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

Side by Side Diff: content/renderer/render_view_impl.h

Issue 11967015: Hide location bar on WebKit programmatic scroll. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove semicolon from end of message declaration Created 7 years, 8 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
« no previous file with comments | « content/renderer/gpu/render_widget_compositor.cc ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_RENDERER_RENDER_VIEW_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
7 7
8 #include <deque> 8 #include <deque>
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 1024 matching lines...) Expand 10 before | Expand all | Expand 10 after
1035 int route_id, 1035 int route_id,
1036 const std::string& frame_tree); 1036 const std::string& frame_tree);
1037 1037
1038 #if defined(OS_ANDROID) 1038 #if defined(OS_ANDROID)
1039 void OnActivateNearestFindResult(int request_id, float x, float y); 1039 void OnActivateNearestFindResult(int request_id, float x, float y);
1040 void OnFindMatchRects(int current_version); 1040 void OnFindMatchRects(int current_version);
1041 void OnSelectPopupMenuItems(bool canceled, 1041 void OnSelectPopupMenuItems(bool canceled,
1042 const std::vector<int>& selected_indices); 1042 const std::vector<int>& selected_indices);
1043 void OnUndoScrollFocusedEditableNodeIntoRect(); 1043 void OnUndoScrollFocusedEditableNodeIntoRect();
1044 void OnEnableHidingTopControls(bool enable); 1044 void OnEnableHidingTopControls(bool enable);
1045 void OnShowTopControls(bool show);
1045 #elif defined(OS_MACOSX) 1046 #elif defined(OS_MACOSX)
1046 void OnCopyToFindPboard(); 1047 void OnCopyToFindPboard();
1047 void OnPluginImeCompositionCompleted(const string16& text, int plugin_id); 1048 void OnPluginImeCompositionCompleted(const string16& text, int plugin_id);
1048 void OnSelectPopupMenuItem(int selected_index); 1049 void OnSelectPopupMenuItem(int selected_index);
1049 void OnSetInLiveResize(bool in_live_resize); 1050 void OnSetInLiveResize(bool in_live_resize);
1050 void OnSetWindowVisibility(bool visible); 1051 void OnSetWindowVisibility(bool visible);
1051 void OnWindowFrameChanged(const gfx::Rect& window_frame, 1052 void OnWindowFrameChanged(const gfx::Rect& window_frame,
1052 const gfx::Rect& view_frame); 1053 const gfx::Rect& view_frame);
1053 #endif 1054 #endif
1054 1055
(...skipping 519 matching lines...) Expand 10 before | Expand all | Expand 10 after
1574 // use the Observer interface to filter IPC messages and receive frame change 1575 // use the Observer interface to filter IPC messages and receive frame change
1575 // notifications. 1576 // notifications.
1576 // --------------------------------------------------------------------------- 1577 // ---------------------------------------------------------------------------
1577 1578
1578 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1579 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1579 }; 1580 };
1580 1581
1581 } // namespace content 1582 } // namespace content
1582 1583
1583 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1584 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW
« no previous file with comments | « content/renderer/gpu/render_widget_compositor.cc ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698