| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 ASH_SHELL_CONTENT_CLIENT_SHELL_CONTENT_BROWSER_CLIENT_H_ | 5 #ifndef ASH_SHELL_CONTENT_CLIENT_SHELL_CONTENT_BROWSER_CLIENT_H_ |
| 6 #define ASH_SHELL_CONTENT_CLIENT_SHELL_CONTENT_BROWSER_CLIENT_H_ | 6 #define ASH_SHELL_CONTENT_CLIENT_SHELL_CONTENT_BROWSER_CLIENT_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 content::ResourceContext* resource_context, | 61 content::ResourceContext* resource_context, |
| 62 const GURL& current_url, | 62 const GURL& current_url, |
| 63 const GURL& new_url) OVERRIDE; | 63 const GURL& new_url) OVERRIDE; |
| 64 virtual std::string GetCanonicalEncodingNameByAliasName( | 64 virtual std::string GetCanonicalEncodingNameByAliasName( |
| 65 const std::string& alias_name) OVERRIDE; | 65 const std::string& alias_name) OVERRIDE; |
| 66 virtual void AppendExtraCommandLineSwitches(CommandLine* command_line, | 66 virtual void AppendExtraCommandLineSwitches(CommandLine* command_line, |
| 67 int child_process_id) OVERRIDE; | 67 int child_process_id) OVERRIDE; |
| 68 virtual std::string GetApplicationLocale() OVERRIDE; | 68 virtual std::string GetApplicationLocale() OVERRIDE; |
| 69 virtual std::string GetAcceptLangs( | 69 virtual std::string GetAcceptLangs( |
| 70 content::BrowserContext* context) OVERRIDE; | 70 content::BrowserContext* context) OVERRIDE; |
| 71 virtual SkBitmap* GetDefaultFavicon() OVERRIDE; | 71 virtual gfx::ImageSkia* GetDefaultFavicon() OVERRIDE; |
| 72 virtual bool AllowAppCache(const GURL& manifest_url, | 72 virtual bool AllowAppCache(const GURL& manifest_url, |
| 73 const GURL& first_party, | 73 const GURL& first_party, |
| 74 content::ResourceContext* context) OVERRIDE; | 74 content::ResourceContext* context) OVERRIDE; |
| 75 virtual bool AllowGetCookie(const GURL& url, | 75 virtual bool AllowGetCookie(const GURL& url, |
| 76 const GURL& first_party, | 76 const GURL& first_party, |
| 77 const net::CookieList& cookie_list, | 77 const net::CookieList& cookie_list, |
| 78 content::ResourceContext* context, | 78 content::ResourceContext* context, |
| 79 int render_process_id, | 79 int render_process_id, |
| 80 int render_view_id) OVERRIDE; | 80 int render_view_id) OVERRIDE; |
| 81 virtual bool AllowSetCookie(const GURL& url, | 81 virtual bool AllowSetCookie(const GURL& url, |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 | 207 |
| 208 ShellBrowserMainParts* shell_browser_main_parts_; | 208 ShellBrowserMainParts* shell_browser_main_parts_; |
| 209 | 209 |
| 210 DISALLOW_COPY_AND_ASSIGN(ShellContentBrowserClient); | 210 DISALLOW_COPY_AND_ASSIGN(ShellContentBrowserClient); |
| 211 }; | 211 }; |
| 212 | 212 |
| 213 } // namespace shell | 213 } // namespace shell |
| 214 } // namespace ash | 214 } // namespace ash |
| 215 | 215 |
| 216 #endif // ASH_SHELL_CONTENT_CLIENT_SHELL_CONTENT_BROWSER_CLIENT_H_ | 216 #endif // ASH_SHELL_CONTENT_CLIENT_SHELL_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |