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

Side by Side Diff: chrome/browser/ui/cocoa/external_protocol_dialog.h

Issue 107033003: Stop using GetDefaultProfile() in Chrome OS implementation of platform_util::OpenExternal() (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove is_valid check Created 7 years 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) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 #import <Cocoa/Cocoa.h> 5 #import <Cocoa/Cocoa.h>
6 6
7 #include "base/time/time.h" 7 #include "base/time/time.h"
8 #include "url/gurl.h" 8 #include "url/gurl.h"
9 9
10 @interface ExternalProtocolDialogController : NSObject { 10 @interface ExternalProtocolDialogController : NSObject {
11 @private 11 @private
12 NSAlert* alert_; 12 NSAlert* alert_;
13 GURL url_; 13 GURL url_;
14 int render_process_host_id_;
15 int routing_id_;
14 base::Time creation_time_; 16 base::Time creation_time_;
15 }; 17 };
16 18
17 - (id)initWithGURL:(const GURL*)url; 19 - (id)initWithGURL:(const GURL*)url
20 renderProcessHostId:(int)renderProcessHostId
21 routingId:(int)routingId;
18 22
19 @end 23 @end
OLDNEW
« no previous file with comments | « chrome/browser/ui/browser_commands.cc ('k') | chrome/browser/ui/cocoa/external_protocol_dialog.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698