| 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 |
| 11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
| 12 #include "content/browser/content_browser_client.h" | 12 #include "content/public/browser/content_browser_client.h" |
| 13 | 13 |
| 14 namespace chrome { | 14 namespace chrome { |
| 15 | 15 |
| 16 class ChromeContentBrowserClient : public content::ContentBrowserClient { | 16 class ChromeContentBrowserClient : public content::ContentBrowserClient { |
| 17 public: | 17 public: |
| 18 virtual content::BrowserMainParts* CreateBrowserMainParts( | 18 virtual content::BrowserMainParts* CreateBrowserMainParts( |
| 19 const MainFunctionParams& parameters) OVERRIDE; | 19 const MainFunctionParams& parameters) OVERRIDE; |
| 20 virtual RenderWidgetHostView* CreateViewForWidget( | 20 virtual RenderWidgetHostView* CreateViewForWidget( |
| 21 RenderWidgetHost* widget) OVERRIDE; | 21 RenderWidgetHost* widget) OVERRIDE; |
| 22 virtual TabContentsView* CreateTabContentsView( | 22 virtual TabContentsView* CreateTabContentsView( |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 #if defined(USE_NSS) | 134 #if defined(USE_NSS) |
| 135 virtual | 135 virtual |
| 136 crypto::CryptoModuleBlockingPasswordDelegate* GetCryptoPasswordDelegate( | 136 crypto::CryptoModuleBlockingPasswordDelegate* GetCryptoPasswordDelegate( |
| 137 const GURL& url) OVERRIDE; | 137 const GURL& url) OVERRIDE; |
| 138 #endif | 138 #endif |
| 139 }; | 139 }; |
| 140 | 140 |
| 141 } // namespace chrome | 141 } // namespace chrome |
| 142 | 142 |
| 143 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 143 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |