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

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

Issue 464883002: Credential Manager: Renderer-side implementation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixing debug. Created 6 years, 4 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 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 #include <vector> 10 #include <vector>
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 } 47 }
48 48
49 namespace visitedlink { 49 namespace visitedlink {
50 class VisitedLinkSlave; 50 class VisitedLinkSlave;
51 } 51 }
52 52
53 namespace blink { 53 namespace blink {
54 class WebSecurityOrigin; 54 class WebSecurityOrigin;
55 } 55 }
56 56
57 namespace password_manager {
58 class CredentialManagerClient;
59 }
60
57 #if defined(ENABLE_WEBRTC) 61 #if defined(ENABLE_WEBRTC)
58 class WebRtcLoggingMessageFilter; 62 class WebRtcLoggingMessageFilter;
59 #endif 63 #endif
60 64
61 class ChromeContentRendererClient : public content::ContentRendererClient { 65 class ChromeContentRendererClient : public content::ContentRendererClient {
62 public: 66 public:
63 ChromeContentRendererClient(); 67 ChromeContentRendererClient();
64 virtual ~ChromeContentRendererClient(); 68 virtual ~ChromeContentRendererClient();
65 69
66 virtual void RenderThreadStarted() OVERRIDE; 70 virtual void RenderThreadStarted() OVERRIDE;
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 scoped_ptr<safe_browsing::PhishingClassifierFilter> phishing_classifier_; 202 scoped_ptr<safe_browsing::PhishingClassifierFilter> phishing_classifier_;
199 scoped_ptr<prerender::PrerenderDispatcher> prerender_dispatcher_; 203 scoped_ptr<prerender::PrerenderDispatcher> prerender_dispatcher_;
200 #if defined(ENABLE_WEBRTC) 204 #if defined(ENABLE_WEBRTC)
201 scoped_refptr<WebRtcLoggingMessageFilter> webrtc_logging_message_filter_; 205 scoped_refptr<WebRtcLoggingMessageFilter> webrtc_logging_message_filter_;
202 #endif 206 #endif
203 scoped_ptr<SearchBouncer> search_bouncer_; 207 scoped_ptr<SearchBouncer> search_bouncer_;
204 #if defined(ENABLE_PLUGINS) 208 #if defined(ENABLE_PLUGINS)
205 std::set<std::string> allowed_compositor_origins_; 209 std::set<std::string> allowed_compositor_origins_;
206 std::set<std::string> allowed_video_decode_origins_; 210 std::set<std::string> allowed_video_decode_origins_;
207 #endif 211 #endif
212 scoped_ptr<password_manager::CredentialManagerClient>
jam 2014/08/21 17:29:32 nit: put before ifdefs
Mike West 2014/08/22 09:03:15 Done.
213 credential_manager_client_;
208 }; 214 };
209 215
210 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ 216 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698