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

Side by Side Diff: chrome/browser/renderer_host/render_view_host.h

Issue 3033004: Revert 52600 - renderer_host: Remove CanBlur method.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 5 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 | « no previous file | chrome/browser/renderer_host/render_view_host.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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ 5 #ifndef CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_
6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ 6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 390 matching lines...) Expand 10 before | Expand all | Expand 10 after
401 401
402 // Notifies the Renderer that a move or resize of its containing window has 402 // Notifies the Renderer that a move or resize of its containing window has
403 // started (this is used to hide the autocomplete popups if any). 403 // started (this is used to hide the autocomplete popups if any).
404 void WindowMoveOrResizeStarted(); 404 void WindowMoveOrResizeStarted();
405 405
406 // RenderWidgetHost public overrides. 406 // RenderWidgetHost public overrides.
407 virtual void Shutdown(); 407 virtual void Shutdown();
408 virtual bool IsRenderView() const { return true; } 408 virtual bool IsRenderView() const { return true; }
409 virtual void OnMessageReceived(const IPC::Message& msg); 409 virtual void OnMessageReceived(const IPC::Message& msg);
410 virtual void GotFocus(); 410 virtual void GotFocus();
411 virtual bool CanBlur() const;
411 virtual void ForwardMouseEvent(const WebKit::WebMouseEvent& mouse_event); 412 virtual void ForwardMouseEvent(const WebKit::WebMouseEvent& mouse_event);
412 virtual void ForwardKeyboardEvent(const NativeWebKeyboardEvent& key_event); 413 virtual void ForwardKeyboardEvent(const NativeWebKeyboardEvent& key_event);
413 virtual void ForwardEditCommand(const std::string& name, 414 virtual void ForwardEditCommand(const std::string& name,
414 const std::string& value); 415 const std::string& value);
415 virtual void ForwardEditCommandsForNextKeyEvent( 416 virtual void ForwardEditCommandsForNextKeyEvent(
416 const EditCommands& edit_commands); 417 const EditCommands& edit_commands);
417 virtual gfx::Rect GetRootWindowResizerRect() const; 418 virtual gfx::Rect GetRootWindowResizerRect() const;
418 419
419 // Creates a new RenderView with the given route id. 420 // Creates a new RenderView with the given route id.
420 void CreateNewWindow(int route_id, 421 void CreateNewWindow(int route_id,
(...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after
718 // AutoFill and Autocomplete suggestions. We accumulate these separately and 719 // AutoFill and Autocomplete suggestions. We accumulate these separately and
719 // send them back to the renderer together. 720 // send them back to the renderer together.
720 int autofill_query_id_; 721 int autofill_query_id_;
721 std::vector<string16> autofill_values_; 722 std::vector<string16> autofill_values_;
722 std::vector<string16> autofill_labels_; 723 std::vector<string16> autofill_labels_;
723 724
724 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); 725 DISALLOW_COPY_AND_ASSIGN(RenderViewHost);
725 }; 726 };
726 727
727 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ 728 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/renderer_host/render_view_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698