| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "components/translate/core/browser/translate_infobar_delegate.h" | 5 #include "components/translate/core/browser/translate_infobar_delegate.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 | 8 |
| 9 #include "base/i18n/string_compare.h" | 9 #include "base/i18n/string_compare.h" |
| 10 #include "base/metrics/histogram_macros.h" | 10 #include "base/metrics/histogram_macros.h" |
| 11 #include "build/build_config.h" |
| 11 #include "components/infobars/core/infobar.h" | 12 #include "components/infobars/core/infobar.h" |
| 12 #include "components/infobars/core/infobar_manager.h" | 13 #include "components/infobars/core/infobar_manager.h" |
| 13 #include "components/translate/core/browser/language_state.h" | 14 #include "components/translate/core/browser/language_state.h" |
| 14 #include "components/translate/core/browser/translate_accept_languages.h" | 15 #include "components/translate/core/browser/translate_accept_languages.h" |
| 15 #include "components/translate/core/browser/translate_client.h" | 16 #include "components/translate/core/browser/translate_client.h" |
| 16 #include "components/translate/core/browser/translate_download_manager.h" | 17 #include "components/translate/core/browser/translate_download_manager.h" |
| 17 #include "components/translate/core/browser/translate_driver.h" | 18 #include "components/translate/core/browser/translate_driver.h" |
| 18 #include "components/translate/core/browser/translate_manager.h" | 19 #include "components/translate/core/browser/translate_manager.h" |
| 19 #include "components/translate/core/common/translate_constants.h" | 20 #include "components/translate/core/common/translate_constants.h" |
| 20 #include "grit/components_strings.h" | 21 #include "grit/components_strings.h" |
| (...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 364 TranslationDeclined(); | 365 TranslationDeclined(); |
| 365 UMA_HISTOGRAM_BOOLEAN("Translate.DeclineTranslateCloseInfobar", true); | 366 UMA_HISTOGRAM_BOOLEAN("Translate.DeclineTranslateCloseInfobar", true); |
| 366 } | 367 } |
| 367 | 368 |
| 368 TranslateInfoBarDelegate* | 369 TranslateInfoBarDelegate* |
| 369 TranslateInfoBarDelegate::AsTranslateInfoBarDelegate() { | 370 TranslateInfoBarDelegate::AsTranslateInfoBarDelegate() { |
| 370 return this; | 371 return this; |
| 371 } | 372 } |
| 372 | 373 |
| 373 } // namespace translate | 374 } // namespace translate |
| OLD | NEW |