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

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

Issue 3547008: Handle resize corner layout entirely in the platform BrowserWindow*/BrowserView* code... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 1 month 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) 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 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 427 matching lines...) Expand 10 before | Expand all | Expand 10 after
438 virtual void OnMessageReceived(const IPC::Message& msg); 438 virtual void OnMessageReceived(const IPC::Message& msg);
439 virtual void GotFocus(); 439 virtual void GotFocus();
440 virtual void LostCapture(); 440 virtual void LostCapture();
441 virtual void ForwardMouseEvent(const WebKit::WebMouseEvent& mouse_event); 441 virtual void ForwardMouseEvent(const WebKit::WebMouseEvent& mouse_event);
442 virtual void OnMouseActivate(); 442 virtual void OnMouseActivate();
443 virtual void ForwardKeyboardEvent(const NativeWebKeyboardEvent& key_event); 443 virtual void ForwardKeyboardEvent(const NativeWebKeyboardEvent& key_event);
444 virtual void ForwardEditCommand(const std::string& name, 444 virtual void ForwardEditCommand(const std::string& name,
445 const std::string& value); 445 const std::string& value);
446 virtual void ForwardEditCommandsForNextKeyEvent( 446 virtual void ForwardEditCommandsForNextKeyEvent(
447 const EditCommands& edit_commands); 447 const EditCommands& edit_commands);
448 virtual gfx::Rect GetRootWindowResizerRect() const;
449 448
450 // Creates a new RenderView with the given route id. 449 // Creates a new RenderView with the given route id.
451 void CreateNewWindow(int route_id, 450 void CreateNewWindow(int route_id,
452 WindowContainerType window_container_type, 451 WindowContainerType window_container_type,
453 const string16& frame_name); 452 const string16& frame_name);
454 453
455 // Creates a new RenderWidget with the given route id. |popup_type| indicates 454 // Creates a new RenderWidget with the given route id. |popup_type| indicates
456 // if this widget is a popup and what kind of popup it is (select, autofill). 455 // if this widget is a popup and what kind of popup it is (select, autofill).
457 void CreateNewWidget(int route_id, WebKit::WebPopupType popup_type); 456 void CreateNewWidget(int route_id, WebKit::WebPopupType popup_type);
458 457
(...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after
812 // Whether the accessibility tree should be saved, for unit testing. 811 // Whether the accessibility tree should be saved, for unit testing.
813 bool save_accessibility_tree_for_testing_; 812 bool save_accessibility_tree_for_testing_;
814 813
815 // The most recently received accessibility tree - for unit testing only. 814 // The most recently received accessibility tree - for unit testing only.
816 webkit_glue::WebAccessibility accessibility_tree_; 815 webkit_glue::WebAccessibility accessibility_tree_;
817 816
818 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); 817 DISALLOW_COPY_AND_ASSIGN(RenderViewHost);
819 }; 818 };
820 819
821 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ 820 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_
OLDNEW
« no previous file with comments | « chrome/browser/instant/instant_loader.cc ('k') | chrome/browser/renderer_host/render_view_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698