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

Unified Diff: content/browser/renderer_host/render_view_host.h

Issue 8511075: Move the struct used when showing a desktop notification to content/public/common, so that chrome... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 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
« no previous file with comments | « content/browser/mock_content_browser_client.cc ('k') | content/browser/renderer_host/render_view_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/renderer_host/render_view_host.h
===================================================================
--- content/browser/renderer_host/render_view_host.h (revision 109661)
+++ content/browser/renderer_host/render_view_host.h (working copy)
@@ -28,22 +28,21 @@
#include "webkit/glue/window_open_disposition.h"
class ChildProcessSecurityPolicy;
-struct ContextMenuParams;
-struct DesktopNotificationHostMsg_Show_Params;
class FilePath;
class GURL;
-struct MediaPlayerAction;
class PowerSaveBlocker;
class RenderViewHostDelegate;
class RenderViewHostObserver;
class SessionStorageNamespace;
class SiteInstance;
class SkBitmap;
+class ViewMsg_Navigate;
+struct ContextMenuParams;
+struct MediaPlayerAction;
struct ViewHostMsg_AccessibilityNotification_Params;
struct ViewHostMsg_CreateWindow_Params;
struct ViewHostMsg_RunFileChooser_Params;
struct ViewHostMsg_ShowPopup_Params;
-class ViewMsg_Navigate;
struct ViewMsg_Navigate_Params;
struct ViewMsg_StopFinding_Params;
struct WebDropData;
@@ -53,6 +52,10 @@
class ListValue;
}
+namespace content {
+struct ShowDesktopNotificationHostMsgParams;
+}
+
namespace gfx {
class Point;
} // namespace gfx
@@ -573,7 +576,7 @@
void OnRequestDesktopNotificationPermission(const GURL& origin,
int callback_id);
void OnShowDesktopNotification(
- const DesktopNotificationHostMsg_Show_Params& params);
+ const content::ShowDesktopNotificationHostMsgParams& params);
void OnCancelDesktopNotification(int notification_id);
void OnRunFileChooser(const ViewHostMsg_RunFileChooser_Params& params);
« no previous file with comments | « content/browser/mock_content_browser_client.cc ('k') | content/browser/renderer_host/render_view_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698