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

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

Issue 14139013: Hide location bar on Javascript-initiated scroll. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge after sync. 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
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 1019 matching lines...) Expand 10 before | Expand all | Expand 10 after
1030 1030
1031 #if defined(OS_ANDROID) 1031 #if defined(OS_ANDROID)
1032 void OnActivateNearestFindResult(int request_id, float x, float y); 1032 void OnActivateNearestFindResult(int request_id, float x, float y);
1033 void OnFindMatchRects(int current_version); 1033 void OnFindMatchRects(int current_version);
1034 void OnSelectPopupMenuItems(bool canceled, 1034 void OnSelectPopupMenuItems(bool canceled,
1035 const std::vector<int>& selected_indices); 1035 const std::vector<int>& selected_indices);
1036 void OnUndoScrollFocusedEditableNodeIntoRect(); 1036 void OnUndoScrollFocusedEditableNodeIntoRect();
1037 void OnUpdateTopControlsState(bool enable_hiding, 1037 void OnUpdateTopControlsState(bool enable_hiding,
1038 bool enable_showing, 1038 bool enable_showing,
1039 bool animate); 1039 bool animate);
1040 void OnShowTopControls(bool show);
1040 #elif defined(OS_MACOSX) 1041 #elif defined(OS_MACOSX)
1041 void OnCopyToFindPboard(); 1042 void OnCopyToFindPboard();
1042 void OnPluginImeCompositionCompleted(const string16& text, int plugin_id); 1043 void OnPluginImeCompositionCompleted(const string16& text, int plugin_id);
1043 void OnSelectPopupMenuItem(int selected_index); 1044 void OnSelectPopupMenuItem(int selected_index);
1044 void OnSetInLiveResize(bool in_live_resize); 1045 void OnSetInLiveResize(bool in_live_resize);
1045 void OnSetWindowVisibility(bool visible); 1046 void OnSetWindowVisibility(bool visible);
1046 void OnWindowFrameChanged(const gfx::Rect& window_frame, 1047 void OnWindowFrameChanged(const gfx::Rect& window_frame,
1047 const gfx::Rect& view_frame); 1048 const gfx::Rect& view_frame);
1048 #endif 1049 #endif
1049 1050
(...skipping 523 matching lines...) Expand 10 before | Expand all | Expand 10 after
1573 // use the Observer interface to filter IPC messages and receive frame change 1574 // use the Observer interface to filter IPC messages and receive frame change
1574 // notifications. 1575 // notifications.
1575 // --------------------------------------------------------------------------- 1576 // ---------------------------------------------------------------------------
1576 1577
1577 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1578 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1578 }; 1579 };
1579 1580
1580 } // namespace content 1581 } // namespace content
1581 1582
1582 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1583 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698