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

Side by Side Diff: chrome/browser/chrome_content_browser_client.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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/chrome_content_browser_client.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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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_CHROME_CONTENT_BROWSER_CLIENT_H_ 5 #ifndef CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_
6 #define CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ 6 #define CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 10
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 const GURL& source_origin, 87 const GURL& source_origin,
88 int callback_context, 88 int callback_context,
89 int render_process_id, 89 int render_process_id,
90 int render_view_id) OVERRIDE; 90 int render_view_id) OVERRIDE;
91 virtual WebKit::WebNotificationPresenter::Permission 91 virtual WebKit::WebNotificationPresenter::Permission
92 CheckDesktopNotificationPermission( 92 CheckDesktopNotificationPermission(
93 const GURL& source_origin, 93 const GURL& source_origin,
94 const content::ResourceContext& context, 94 const content::ResourceContext& context,
95 int render_process_id) OVERRIDE; 95 int render_process_id) OVERRIDE;
96 virtual void ShowDesktopNotification( 96 virtual void ShowDesktopNotification(
97 const DesktopNotificationHostMsg_Show_Params& params, 97 const content::ShowDesktopNotificationHostMsgParams& params,
98 int render_process_id, 98 int render_process_id,
99 int render_view_id, 99 int render_view_id,
100 bool worker) OVERRIDE; 100 bool worker) OVERRIDE;
101 virtual void CancelDesktopNotification( 101 virtual void CancelDesktopNotification(
102 int render_process_id, 102 int render_process_id,
103 int render_view_id, 103 int render_view_id,
104 int notification_id) OVERRIDE; 104 int notification_id) OVERRIDE;
105 virtual bool CanCreateWindow( 105 virtual bool CanCreateWindow(
106 const GURL& source_origin, 106 const GURL& source_origin,
107 WindowContainerType container_type, 107 WindowContainerType container_type,
(...skipping 29 matching lines...) Expand all
137 #if defined(USE_NSS) 137 #if defined(USE_NSS)
138 virtual 138 virtual
139 crypto::CryptoModuleBlockingPasswordDelegate* GetCryptoPasswordDelegate( 139 crypto::CryptoModuleBlockingPasswordDelegate* GetCryptoPasswordDelegate(
140 const GURL& url) OVERRIDE; 140 const GURL& url) OVERRIDE;
141 #endif 141 #endif
142 }; 142 };
143 143
144 } // namespace chrome 144 } // namespace chrome
145 145
146 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ 146 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chrome_content_browser_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698