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

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

Issue 12086069: Enable Chrome Signin from Webstore (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase 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
OLDNEW
(Empty)
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_RENDERER_ONE_CLICK_SIGNIN_AGENT_H_
6 #define CHROME_RENDERER_ONE_CLICK_SIGNIN_AGENT_H_
7
8 #include "content/public/renderer/render_view_observer.h"
9
10 namespace WebKit {
11 class WebFormElement;
12 class WebFrame;
jam 2013/02/01 02:45:59 nit: don't need these forward declares since they'
13 }
14
15 // OneClickSigninAgent deals with oneclick signin related communications between
16 // the renderer and the browser. There is one OneClickSigninAgent per
17 // RenderView.
18 class OneClickSigninAgent : public content::RenderViewObserver {
19 public:
20 explicit OneClickSigninAgent(content::RenderView* render_view);
21 virtual ~OneClickSigninAgent();
22
23 private:
24 virtual void WillSubmitForm(WebKit::WebFrame* frame,
25 const WebKit::WebFormElement& form) OVERRIDE;
26
27 DISALLOW_COPY_AND_ASSIGN(OneClickSigninAgent);
28 };
29
30 #endif // CHROME_RENDERER_ONE_CLICK_SIGNIN_AGENT_H_
OLDNEW
« no previous file with comments | « chrome/renderer/chrome_content_renderer_client.cc ('k') | chrome/renderer/one_click_signin_agent.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698