| Index: chrome/browser/renderer_host/render_view_host_delegate.h
|
| diff --git a/chrome/browser/renderer_host/render_view_host_delegate.h b/chrome/browser/renderer_host/render_view_host_delegate.h
|
| index 670b5f1dac20d0fa06114198bd44fa1d869aa164..20b540d5bf59dd7a9a4719f3b5d0b49d70e0947b 100644
|
| --- a/chrome/browser/renderer_host/render_view_host_delegate.h
|
| +++ b/chrome/browser/renderer_host/render_view_host_delegate.h
|
| @@ -50,6 +50,7 @@ struct ViewHostMsg_DomMessage_Params;
|
| struct ViewHostMsg_FrameNavigate_Params;
|
| struct ViewHostMsg_PageHasOSDD_Type;
|
| struct ViewHostMsg_RunFileChooser_Params;
|
| +struct WebApplicationInfo;
|
| struct WebDropData;
|
| struct WebMenuItem;
|
| class WebKeyboardEvent;
|
| @@ -73,7 +74,6 @@ namespace webkit_glue {
|
| struct FormData;
|
| class FormField;
|
| struct PasswordForm;
|
| -struct WebApplicationInfo;
|
| }
|
|
|
| //
|
| @@ -280,10 +280,11 @@ class RenderViewHostDelegate {
|
| virtual void OnDisabledOutdatedPlugin(const string16& name,
|
| const GURL& update_url) = 0;
|
|
|
| - // Notification that a request for install info has completed.
|
| + // Notification that a user's request to install an application has
|
| + // completed.
|
| virtual void OnDidGetApplicationInfo(
|
| int32 page_id,
|
| - const webkit_glue::WebApplicationInfo& app_info) = 0;
|
| + const WebApplicationInfo& app_info) = 0;
|
|
|
| // Notification that the contents of the page has been loaded.
|
| virtual void OnPageContents(const GURL& url,
|
|
|