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

Side by Side Diff: chrome/browser/ui/cocoa/extensions/web_auth_flow_window_cocoa.h

Issue 10823149: Remove WebAuthFlowWindow and its implementation on all platforms. We don't need it anymore since we… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 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
« no previous file with comments | « no previous file | chrome/browser/ui/cocoa/extensions/web_auth_flow_window_cocoa.mm » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_UI_COCOA_EXTENSIONS_WEB_AUTH_FLOW_WINDOW_COCOA_H_
6 #define CHROME_BROWSER_UI_COCOA_EXTENSIONS_WEB_AUTH_FLOW_WINDOW_COCOA_H_
7
8 #import <Cocoa/Cocoa.h>
9
10 #include "base/memory/scoped_nsobject.h"
11 #include "chrome/browser/ui/extensions/web_auth_flow_window.h"
12
13 namespace content {
14 class BrowserContext;
15 class WebContents;
16 }
17
18 @class WebAuthFlowWindowController;
19
20 // Cocoa bridge to WebAuthFlowWindow.
21 class WebAuthFlowWindowCocoa : public WebAuthFlowWindow {
22 public:
23 WebAuthFlowWindowCocoa(
24 Delegate* delegate,
25 content::BrowserContext* browser_context,
26 content::WebContents* contents);
27
28 // WebAuthFlowWindow implementation.
29 virtual void Show() OVERRIDE;
30
31 // Called when the window is about to be closed.
32 void WindowWillClose();
33
34 private:
35 virtual ~WebAuthFlowWindowCocoa();
36
37 scoped_nsobject<WebAuthFlowWindowController> window_controller_;
38 NSInteger attention_request_id_; // identifier from requestUserAttention
39
40 DISALLOW_COPY_AND_ASSIGN(WebAuthFlowWindowCocoa);
41 };
42
43 #endif // CHROME_BROWSER_UI_COCOA_EXTENSIONS_WEB_AUTH_FLOW_WINDOW_COCOA_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/cocoa/extensions/web_auth_flow_window_cocoa.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698