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

Unified Diff: chrome/browser/renderer_host/render_view_host_delegate.h

Issue 4979003: Implement web app definition parsing. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: cleanup 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 side-by-side diff with in-line comments
Download patch
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,

Powered by Google App Engine
This is Rietveld 408576698