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

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

Issue 200031: Take out the activex control. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 3 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/common/render_messages_internal.h ('k') | chrome/renderer/render_view.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) 2009 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_VIEW_H_ 5 #ifndef CHROME_RENDERER_RENDER_VIEW_H_
6 #define CHROME_RENDERER_RENDER_VIEW_H_ 6 #define CHROME_RENDERER_RENDER_VIEW_H_
7 7
8 #include <set> 8 #include <set>
9 #include <string> 9 #include <string>
10 #include <queue> 10 #include <queue>
(...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after
354 virtual void didBeginEditing() {} 354 virtual void didBeginEditing() {}
355 virtual void didChangeSelection(bool is_selection_empty); 355 virtual void didChangeSelection(bool is_selection_empty);
356 virtual void didChangeContents() {} 356 virtual void didChangeContents() {}
357 virtual void didExecuteCommand(const WebKit::WebString& command_name); 357 virtual void didExecuteCommand(const WebKit::WebString& command_name);
358 virtual void didEndEditing() {} 358 virtual void didEndEditing() {}
359 359
360 // webkit_glue::WebPluginPageDelegate 360 // webkit_glue::WebPluginPageDelegate
361 virtual webkit_glue::WebPluginDelegate* CreatePluginDelegate( 361 virtual webkit_glue::WebPluginDelegate* CreatePluginDelegate(
362 const GURL& url, 362 const GURL& url,
363 const std::string& mime_type, 363 const std::string& mime_type,
364 const std::string& clsid,
365 std::string* actual_mime_type); 364 std::string* actual_mime_type);
366 virtual void CreatedPluginWindow(gfx::PluginWindowHandle handle); 365 virtual void CreatedPluginWindow(gfx::PluginWindowHandle handle);
367 virtual void WillDestroyPluginWindow(gfx::PluginWindowHandle handle); 366 virtual void WillDestroyPluginWindow(gfx::PluginWindowHandle handle);
368 virtual void DidMovePlugin(const webkit_glue::WebPluginGeometry& move); 367 virtual void DidMovePlugin(const webkit_glue::WebPluginGeometry& move);
369 virtual void DidStartLoadingForPlugin(); 368 virtual void DidStartLoadingForPlugin();
370 virtual void DidStopLoadingForPlugin(); 369 virtual void DidStopLoadingForPlugin();
371 virtual void ShowModalHTMLDialogForPlugin( 370 virtual void ShowModalHTMLDialogForPlugin(
372 const GURL& url, 371 const GURL& url,
373 const gfx::Size& size, 372 const gfx::Size& size,
374 const std::string& json_arguments, 373 const std::string& json_arguments,
(...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after
892 // page id for the last navigation sent to the browser. 891 // page id for the last navigation sent to the browser.
893 int32 last_top_level_navigation_page_id_; 892 int32 last_top_level_navigation_page_id_;
894 893
895 // The settings this render view initialized WebKit with. 894 // The settings this render view initialized WebKit with.
896 WebPreferences webkit_preferences_; 895 WebPreferences webkit_preferences_;
897 896
898 DISALLOW_COPY_AND_ASSIGN(RenderView); 897 DISALLOW_COPY_AND_ASSIGN(RenderView);
899 }; 898 };
900 899
901 #endif // CHROME_RENDERER_RENDER_VIEW_H_ 900 #endif // CHROME_RENDERER_RENDER_VIEW_H_
OLDNEW
« no previous file with comments | « chrome/common/render_messages_internal.h ('k') | chrome/renderer/render_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698