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

Side by Side Diff: chrome/renderer/chrome_content_renderer_client.h

Issue 12163003: Add FilePath to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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
« no previous file with comments | « chrome/installer/util/work_item_list.h ('k') | chrome/renderer/mock_printer.h » ('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) 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 CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ 5 #ifndef CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_
6 #define CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ 6 #define CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_
7 7
8 #include <set> 8 #include <set>
9 #include <string> 9 #include <string>
10 10
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 virtual SkBitmap* GetSadPluginBitmap() OVERRIDE; 59 virtual SkBitmap* GetSadPluginBitmap() OVERRIDE;
60 virtual SkBitmap* GetSadWebViewBitmap() OVERRIDE; 60 virtual SkBitmap* GetSadWebViewBitmap() OVERRIDE;
61 virtual std::string GetDefaultEncoding() OVERRIDE; 61 virtual std::string GetDefaultEncoding() OVERRIDE;
62 virtual bool OverrideCreatePlugin( 62 virtual bool OverrideCreatePlugin(
63 content::RenderView* render_view, 63 content::RenderView* render_view,
64 WebKit::WebFrame* frame, 64 WebKit::WebFrame* frame,
65 const WebKit::WebPluginParams& params, 65 const WebKit::WebPluginParams& params,
66 WebKit::WebPlugin** plugin) OVERRIDE; 66 WebKit::WebPlugin** plugin) OVERRIDE;
67 virtual WebKit::WebPlugin* CreatePluginReplacement( 67 virtual WebKit::WebPlugin* CreatePluginReplacement(
68 content::RenderView* render_view, 68 content::RenderView* render_view,
69 const FilePath& plugin_path) OVERRIDE; 69 const base::FilePath& plugin_path) OVERRIDE;
70 virtual bool HasErrorPage(int http_status_code, 70 virtual bool HasErrorPage(int http_status_code,
71 std::string* error_domain) OVERRIDE; 71 std::string* error_domain) OVERRIDE;
72 virtual void GetNavigationErrorStrings( 72 virtual void GetNavigationErrorStrings(
73 const WebKit::WebURLRequest& failed_request, 73 const WebKit::WebURLRequest& failed_request,
74 const WebKit::WebURLError& error, 74 const WebKit::WebURLError& error,
75 std::string* error_html, 75 std::string* error_html,
76 string16* error_description) OVERRIDE; 76 string16* error_description) OVERRIDE;
77 virtual webkit_media::WebMediaPlayerImpl* OverrideCreateWebMediaPlayer( 77 virtual webkit_media::WebMediaPlayerImpl* OverrideCreateWebMediaPlayer(
78 content::RenderView* render_view, 78 content::RenderView* render_view,
79 WebKit::WebFrame* frame, 79 WebKit::WebFrame* frame,
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 scoped_ptr<RendererNetPredictor> net_predictor_; 172 scoped_ptr<RendererNetPredictor> net_predictor_;
173 scoped_ptr<SpellCheck> spellcheck_; 173 scoped_ptr<SpellCheck> spellcheck_;
174 scoped_ptr<components::VisitedLinkSlave> visited_link_slave_; 174 scoped_ptr<components::VisitedLinkSlave> visited_link_slave_;
175 scoped_ptr<safe_browsing::PhishingClassifierFilter> phishing_classifier_; 175 scoped_ptr<safe_browsing::PhishingClassifierFilter> phishing_classifier_;
176 scoped_ptr<prerender::PrerenderDispatcher> prerender_dispatcher_; 176 scoped_ptr<prerender::PrerenderDispatcher> prerender_dispatcher_;
177 }; 177 };
178 178
179 } // namespace chrome 179 } // namespace chrome
180 180
181 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ 181 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_
OLDNEW
« no previous file with comments | « chrome/installer/util/work_item_list.h ('k') | chrome/renderer/mock_printer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698