| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |