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

Side by Side Diff: chrome/browser/ui/android/simple_message_box_android.cc

Issue 2107493002: Offer user to send feedback from profile error dialog (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: pkasting's & droger's Created 4 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
« no previous file with comments | « chrome/browser/prefs/chrome_pref_service_factory.cc ('k') | chrome/browser/ui/chrome_pages.h » ('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 "chrome/browser/ui/simple_message_box.h" 5 #include "chrome/browser/ui/simple_message_box.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 8
9 namespace chrome { 9 namespace chrome {
10 10
11 void ShowWarningMessageBox(gfx::NativeWindow parent, 11 void ShowWarningMessageBox(gfx::NativeWindow parent,
12 const base::string16& title, 12 const base::string16& title,
13 const base::string16& message) { 13 const base::string16& message) {
14 NOTIMPLEMENTED(); 14 NOTIMPLEMENTED();
15 } 15 }
16 16
17 MessageBoxResult ShowQuestionMessageBox(gfx::NativeWindow parent, 17 MessageBoxResult ShowQuestionMessageBox(gfx::NativeWindow parent,
18 const base::string16& title, 18 const base::string16& title,
19 const base::string16& message) { 19 const base::string16& message) {
20 NOTIMPLEMENTED(); 20 NOTIMPLEMENTED();
21 return MESSAGE_BOX_RESULT_NO; 21 return MESSAGE_BOX_RESULT_NO;
22 } 22 }
23 23
24 bool ShowWarningMessageBoxWithCheckbox(gfx::NativeWindow parent,
25 const base::string16& title,
26 const base::string16& message,
27 const base::string16& checkbox_text) {
28 NOTIMPLEMENTED();
29 return false;
30 }
31
24 } // namespace chrome 32 } // namespace chrome
OLDNEW
« no previous file with comments | « chrome/browser/prefs/chrome_pref_service_factory.cc ('k') | chrome/browser/ui/chrome_pages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698