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

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

Issue 8265005: first run bubble using the views/bubble api. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: style Created 9 years, 1 month 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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/logging.h" 5 #include "base/logging.h"
6 6
7 #include "chrome/browser/bookmarks/bookmark_editor.h" 7 #include "chrome/browser/bookmarks/bookmark_editor.h"
8 #include "chrome/browser/external_protocol/external_protocol_handler.h" 8 #include "chrome/browser/external_protocol/external_protocol_handler.h"
9 #include "chrome/browser/first_run/first_run.h" 9 #include "chrome/browser/first_run/first_run.h"
10 #include "chrome/browser/first_run/first_run_import_observer.h" 10 #include "chrome/browser/first_run/first_run_import_observer.h"
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 76
77 } // namespace browser 77 } // namespace browser
78 78
79 #if defined(OS_WIN) 79 #if defined(OS_WIN)
80 void ShowCertificateViewer(gfx::NativeWindow parent, 80 void ShowCertificateViewer(gfx::NativeWindow parent,
81 net::X509Certificate* cert) { 81 net::X509Certificate* cert) {
82 // No certificate viewer on Windows. 82 // No certificate viewer on Windows.
83 } 83 }
84 #endif 84 #endif
85 85
86 // static
87 FirstRunBubble* FirstRunBubble::Show(
88 Profile* profile,
89 views::Widget* parent,
90 const gfx::Rect& position_relative_to,
91 views::BubbleBorder::ArrowLocation arrow_location,
92 FirstRun::BubbleType bubble_type) {
93 // TODO(beng);
94 NOTIMPLEMENTED();
95 return NULL;
96 }
97
98 #if !defined(OS_WIN) 86 #if !defined(OS_WIN)
99 void ShowCertSelectFileDialog(SelectFileDialog* select_file_dialog, 87 void ShowCertSelectFileDialog(SelectFileDialog* select_file_dialog,
100 SelectFileDialog::Type type, 88 SelectFileDialog::Type type,
101 const FilePath& suggested_path, 89 const FilePath& suggested_path,
102 TabContents* tab_contents, 90 TabContents* tab_contents,
103 gfx::NativeWindow parent, 91 gfx::NativeWindow parent,
104 void* params) { 92 void* params) {
105 // TODO(saintlou); 93 // TODO(saintlou);
106 NOTIMPLEMENTED(); 94 NOTIMPLEMENTED();
107 } 95 }
(...skipping 18 matching lines...) Expand all
126 // TODO(beng); 114 // TODO(beng);
127 NOTIMPLEMENTED(); 115 NOTIMPLEMENTED();
128 } 116 }
129 117
130 } // namespace importer 118 } // namespace importer
131 119
132 // static 120 // static
133 void ExternalProtocolHandler::RunExternalProtocolDialog( 121 void ExternalProtocolHandler::RunExternalProtocolDialog(
134 const GURL& url, int render_process_host_id, int routing_id) { 122 const GURL& url, int render_process_host_id, int routing_id) {
135 } 123 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698