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

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: Created 9 years, 2 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
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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 88
89 } // namespace browser 89 } // namespace browser
90 90
91 91
92 void ShowCertificateViewer(gfx::NativeWindow parent, 92 void ShowCertificateViewer(gfx::NativeWindow parent,
93 net::X509Certificate* cert) { 93 net::X509Certificate* cert) {
94 // TODO(beng); 94 // TODO(beng);
95 NOTIMPLEMENTED(); 95 NOTIMPLEMENTED();
96 } 96 }
97 97
98 // static
99 FirstRunBubble* FirstRunBubble::Show(
100 Profile* profile,
101 views::Widget* parent,
102 const gfx::Rect& position_relative_to,
103 views::BubbleBorder::ArrowLocation arrow_location,
104 FirstRun::BubbleType bubble_type) {
105 // TODO(beng);
106 NOTIMPLEMENTED();
107 return NULL;
108 }
109 98
110 #if !defined(OS_WIN) 99 #if !defined(OS_WIN)
111 void ShowCertSelectFileDialog(SelectFileDialog* select_file_dialog, 100 void ShowCertSelectFileDialog(SelectFileDialog* select_file_dialog,
112 SelectFileDialog::Type type, 101 SelectFileDialog::Type type,
113 const FilePath& suggested_path, 102 const FilePath& suggested_path,
114 TabContents* tab_contents, 103 TabContents* tab_contents,
115 gfx::NativeWindow parent, 104 gfx::NativeWindow parent,
116 void* params) { 105 void* params) {
117 // TODO(saintlou); 106 // TODO(saintlou);
118 NOTIMPLEMENTED(); 107 NOTIMPLEMENTED();
(...skipping 19 matching lines...) Expand all
138 // TODO(beng); 127 // TODO(beng);
139 NOTIMPLEMENTED(); 128 NOTIMPLEMENTED();
140 } 129 }
141 130
142 } // namespace importer 131 } // namespace importer
143 132
144 // static 133 // static
145 void ExternalProtocolHandler::RunExternalProtocolDialog( 134 void ExternalProtocolHandler::RunExternalProtocolDialog(
146 const GURL& url, int render_process_host_id, int routing_id) { 135 const GURL& url, int render_process_host_id, int routing_id) {
147 } 136 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698