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

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

Issue 668125: Basic DragImage implementation.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 9 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
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 531 matching lines...) Expand 10 before | Expand all | Expand 10 after
542 IPC::Message* reply_msg); 542 IPC::Message* reply_msg);
543 void OnMsgShowModalHTMLDialog(const GURL& url, int width, int height, 543 void OnMsgShowModalHTMLDialog(const GURL& url, int width, int height,
544 const std::string& json_arguments, 544 const std::string& json_arguments,
545 IPC::Message* reply_msg); 545 IPC::Message* reply_msg);
546 void OnMsgFormsSeen( 546 void OnMsgFormsSeen(
547 const std::vector<webkit_glue::FormFieldValues>& forms); 547 const std::vector<webkit_glue::FormFieldValues>& forms);
548 void OnMsgPasswordFormsSeen( 548 void OnMsgPasswordFormsSeen(
549 const std::vector<webkit_glue::PasswordForm>& forms); 549 const std::vector<webkit_glue::PasswordForm>& forms);
550 void OnMsgFormFieldValuesSubmitted(const webkit_glue::FormFieldValues& forms); 550 void OnMsgFormFieldValuesSubmitted(const webkit_glue::FormFieldValues& forms);
551 void OnMsgStartDragging(const WebDropData& drop_data, 551 void OnMsgStartDragging(const WebDropData& drop_data,
552 WebKit::WebDragOperationsMask operations_allowed); 552 WebKit::WebDragOperationsMask operations_allowed,
553 const SkBitmap& image,
554 const gfx::Point& image_offset);
553 void OnUpdateDragCursor(WebKit::WebDragOperation drag_operation); 555 void OnUpdateDragCursor(WebKit::WebDragOperation drag_operation);
554 void OnTakeFocus(bool reverse); 556 void OnTakeFocus(bool reverse);
555 void OnMsgPageHasOSDD(int32 page_id, const GURL& doc_url, bool autodetected); 557 void OnMsgPageHasOSDD(int32 page_id, const GURL& doc_url, bool autodetected);
556 void OnDidGetPrintedPagesCount(int cookie, int number_pages); 558 void OnDidGetPrintedPagesCount(int cookie, int number_pages);
557 void DidPrintPage(const ViewHostMsg_DidPrintPage_Params& params); 559 void DidPrintPage(const ViewHostMsg_DidPrintPage_Params& params);
558 void OnAddMessageToConsole(const std::wstring& message, 560 void OnAddMessageToConsole(const std::wstring& message,
559 int32 line_no, 561 int32 line_no,
560 const std::wstring& source_id); 562 const std::wstring& source_id);
561 563
562 void OnUpdateInspectorSettings(const std::string& raw_settings); 564 void OnUpdateInspectorSettings(const std::string& raw_settings);
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
685 // True if the render view can be shut down suddenly. 687 // True if the render view can be shut down suddenly.
686 bool sudden_termination_allowed_; 688 bool sudden_termination_allowed_;
687 689
688 // The session storage namespace id to be used by the associated render view. 690 // The session storage namespace id to be used by the associated render view.
689 int64 session_storage_namespace_id_; 691 int64 session_storage_namespace_id_;
690 692
691 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); 693 DISALLOW_COPY_AND_ASSIGN(RenderViewHost);
692 }; 694 };
693 695
694 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ 696 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_
OLDNEW
« no previous file with comments | « chrome/browser/gtk/tab_contents_drag_source.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