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

Side by Side Diff: chrome/renderer/render_widget.h

Issue 62129: Find should allow keyboard scrolling while Find bar has focus (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 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 | « chrome/renderer/render_view.cc ('k') | chrome/renderer/render_widget.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) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 CHROME_RENDERER_RENDER_WIDGET_H__ 5 #ifndef CHROME_RENDERER_RENDER_WIDGET_H_
6 #define CHROME_RENDERER_RENDER_WIDGET_H__ 6 #define CHROME_RENDERER_RENDER_WIDGET_H_
7 7
8 #include <vector> 8 #include <vector>
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "base/gfx/native_widget_types.h" 10 #include "base/gfx/native_widget_types.h"
11 #include "base/gfx/point.h" 11 #include "base/gfx/point.h"
12 #include "base/gfx/rect.h" 12 #include "base/gfx/rect.h"
13 #include "base/gfx/size.h" 13 #include "base/gfx/size.h"
14 #include "base/ref_counted.h" 14 #include "base/ref_counted.h"
15 #include "base/shared_memory.h" 15 #include "base/shared_memory.h"
16 #include "chrome/common/ipc_channel.h" 16 #include "chrome/common/ipc_channel.h"
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
258 bool ime_control_new_state_; 258 bool ime_control_new_state_;
259 bool ime_control_updated_; 259 bool ime_control_updated_;
260 bool ime_control_busy_; 260 bool ime_control_busy_;
261 261
262 // Whether the window for this RenderWidget can be activated. 262 // Whether the window for this RenderWidget can be activated.
263 bool activatable_; 263 bool activatable_;
264 264
265 // Holds all the needed plugin window moves for a scroll. 265 // Holds all the needed plugin window moves for a scroll.
266 std::vector<WebPluginGeometry> plugin_window_moves_; 266 std::vector<WebPluginGeometry> plugin_window_moves_;
267 267
268 DISALLOW_EVIL_CONSTRUCTORS(RenderWidget); 268 DISALLOW_COPY_AND_ASSIGN(RenderWidget);
269 }; 269 };
270 270
271 #endif // CHROME_RENDERER_RENDER_WIDGET_H__ 271 #endif // CHROME_RENDERER_RENDER_WIDGET_H_
OLDNEW
« no previous file with comments | « chrome/renderer/render_view.cc ('k') | chrome/renderer/render_widget.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698