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

Side by Side Diff: ash/shell/content_client/shell_content_browser_client.h

Issue 10447053: Converts remainder of ui and chrome/browser/ui/views/frame to use ImageSkia (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Sorted headers in modified files Created 8 years, 6 months 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
OLDNEW
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
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698