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

Side by Side Diff: chrome/browser/ui/views/stubs_aura.cc

Issue 10260033: Build fixes to get use_aura && !use_ash to build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 7 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/browser/ui/views/frame/browser_view.cc ('k') | chrome/chrome.gyp » ('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 #include "base/callback.h" 5 #include "base/callback.h"
6 #include "base/logging.h" 6 #include "base/logging.h"
7 7
8 #include "chrome/browser/external_protocol/external_protocol_handler.h" 8 #include "chrome/browser/external_protocol/external_protocol_handler.h"
9 #include "chrome/browser/importer/importer_progress_dialog.h" 9 #include "chrome/browser/importer/importer_progress_dialog.h"
10 #include "ui/gfx/native_widget_types.h" 10 #include "ui/gfx/native_widget_types.h"
(...skipping 17 matching lines...) Expand all
28 class HttpNetworkSession; 28 class HttpNetworkSession;
29 class SSLCertRequestInfo; 29 class SSLCertRequestInfo;
30 class X509Certificate; 30 class X509Certificate;
31 } 31 }
32 namespace views { 32 namespace views {
33 class Widget; 33 class Widget;
34 } 34 }
35 35
36 namespace browser { 36 namespace browser {
37 37
38 #if defined(OS_WIN)
39 void ShowSSLClientCertificateSelector(
40 TabContentsWrapper* parent,
41 const net::HttpNetworkSession* network_session,
42 net::SSLCertRequestInfo* cert_request_info,
43 const base::Callback<void(net::X509Certificate*)>& callback) {
44 // TODO(beng):
45 NOTIMPLEMENTED();
46 }
47 #endif
48
49 void ShowAboutIPCDialog() { 38 void ShowAboutIPCDialog() {
50 // TODO(beng): 39 // TODO(beng):
51 NOTIMPLEMENTED(); 40 NOTIMPLEMENTED();
52 } 41 }
53 42
54 } // namespace browser 43 } // namespace browser
55 44
56 #if defined(OS_WIN) 45 #if defined(OS_WIN)
57 void ShowCertificateViewer(gfx::NativeWindow parent, 46 void ShowCertificateViewer(gfx::NativeWindow parent,
58 net::X509Certificate* cert) { 47 net::X509Certificate* cert) {
(...skipping 12 matching lines...) Expand all
71 // TODO(beng); 60 // TODO(beng);
72 NOTIMPLEMENTED(); 61 NOTIMPLEMENTED();
73 } 62 }
74 63
75 } // namespace importer 64 } // namespace importer
76 65
77 // static 66 // static
78 void ExternalProtocolHandler::RunExternalProtocolDialog( 67 void ExternalProtocolHandler::RunExternalProtocolDialog(
79 const GURL& url, int render_process_host_id, int routing_id) { 68 const GURL& url, int render_process_host_id, int routing_id) {
80 } 69 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/frame/browser_view.cc ('k') | chrome/chrome.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698