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

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

Issue 46055: RSS feed support (part 1), 2nd attempt (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 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
« no previous file with comments | « chrome/browser/location_bar.h ('k') | 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) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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 499 matching lines...) Expand 10 before | Expand all | Expand 10 after
510 IPC::Message* reply_msg); 510 IPC::Message* reply_msg);
511 void OnMsgShowModalHTMLDialog(const GURL& url, int width, int height, 511 void OnMsgShowModalHTMLDialog(const GURL& url, int width, int height,
512 const std::string& json_arguments, 512 const std::string& json_arguments,
513 IPC::Message* reply_msg); 513 IPC::Message* reply_msg);
514 void OnMsgPasswordFormsSeen(const std::vector<PasswordForm>& forms); 514 void OnMsgPasswordFormsSeen(const std::vector<PasswordForm>& forms);
515 void OnMsgAutofillFormSubmitted(const AutofillForm& forms); 515 void OnMsgAutofillFormSubmitted(const AutofillForm& forms);
516 void OnMsgStartDragging(const WebDropData& drop_data); 516 void OnMsgStartDragging(const WebDropData& drop_data);
517 void OnUpdateDragCursor(bool is_drop_target); 517 void OnUpdateDragCursor(bool is_drop_target);
518 void OnTakeFocus(bool reverse); 518 void OnTakeFocus(bool reverse);
519 void OnMsgPageHasOSDD(int32 page_id, const GURL& doc_url, bool autodetected); 519 void OnMsgPageHasOSDD(int32 page_id, const GURL& doc_url, bool autodetected);
520 void OnMsgUpdateFeedList(const ViewHostMsg_UpdateFeedList_Params& params);
520 void OnMsgInspectElementReply(int num_resources); 521 void OnMsgInspectElementReply(int num_resources);
521 void DidPrintPage(const ViewHostMsg_DidPrintPage_Params& params); 522 void DidPrintPage(const ViewHostMsg_DidPrintPage_Params& params);
522 void OnDebugMessage(const std::string& message); 523 void OnDebugMessage(const std::string& message);
523 void OnAddMessageToConsole(const std::wstring& message, 524 void OnAddMessageToConsole(const std::wstring& message,
524 int32 line_no, 525 int32 line_no,
525 const std::wstring& source_id); 526 const std::wstring& source_id);
526 void OnDebuggerOutput(const std::wstring& output); 527 void OnDebuggerOutput(const std::wstring& output);
527 void DidDebugAttach(); 528 void DidDebugAttach();
528 void OnForwardToDevToolsAgent(const IPC::Message& message); 529 void OnForwardToDevToolsAgent(const IPC::Message& message);
529 void OnForwardToDevToolsClient(const IPC::Message& message); 530 void OnForwardToDevToolsClient(const IPC::Message& message);
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
642 virtual ~RenderViewHostFactory() {} 643 virtual ~RenderViewHostFactory() {}
643 644
644 virtual RenderViewHost* CreateRenderViewHost( 645 virtual RenderViewHost* CreateRenderViewHost(
645 SiteInstance* instance, 646 SiteInstance* instance,
646 RenderViewHostDelegate* delegate, 647 RenderViewHostDelegate* delegate,
647 int routing_id, 648 int routing_id,
648 base::WaitableEvent* modal_dialog_event) = 0; 649 base::WaitableEvent* modal_dialog_event) = 0;
649 }; 650 };
650 651
651 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ 652 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_
OLDNEW
« no previous file with comments | « chrome/browser/location_bar.h ('k') | chrome/browser/renderer_host/render_view_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698