[Metrics] Make MetricsStateManager take a callback param to check if UMA is enabled.
[chromium-blink-merge.git] / chrome / browser / ui / profile_error_dialog.cc
blob9e3138ef60e9726a5ab1584c980e6ab68d64166d
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
3 // found in the LICENSE file.
5 #include "chrome/browser/ui/profile_error_dialog.h"
7 #include "base/metrics/histogram.h"
8 #include "chrome/browser/ui/simple_message_box.h"
9 #include "grit/chromium_strings.h"
10 #include "grit/generated_resources.h"
11 #include "ui/base/l10n/l10n_util.h"
13 void ShowProfileErrorDialog(ProfileErrorType type, int message_id) {
14 #if defined(OS_ANDROID) || defined(OS_IOS)
15 NOTIMPLEMENTED();
16 #else
17 UMA_HISTOGRAM_ENUMERATION("Profile.ProfileError", type, PROFILE_ERROR_END);
18 chrome::ShowMessageBox(NULL,
19 l10n_util::GetStringUTF16(IDS_PRODUCT_NAME),
20 l10n_util::GetStringUTF16(message_id),
21 chrome::MESSAGE_BOX_TYPE_WARNING);
22 #endif