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

Unified Diff: chrome/browser/ui/ash/multi_user/multi_user_warning_dialog.cc

Issue 498773003: Use a qualified path for chromium_strings, google_chrome_strings, and generated_resources. (part 2 … (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: nit Created 6 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/ash/multi_user/multi_user_warning_dialog.cc
diff --git a/chrome/browser/ui/ash/multi_user/multi_user_warning_dialog.cc b/chrome/browser/ui/ash/multi_user/multi_user_warning_dialog.cc
index 9d5b70037ba920a63806dc348bd7509b1def2edc..bbb49511d5a7399f1bf6ffe5c2026bd0cf1966c1 100644
--- a/chrome/browser/ui/ash/multi_user/multi_user_warning_dialog.cc
+++ b/chrome/browser/ui/ash/multi_user/multi_user_warning_dialog.cc
@@ -5,7 +5,7 @@
#include "chrome/browser/ui/ash/multi_user/multi_user_warning_dialog.h"
#include "ash/shell.h"
-#include "grit/generated_resources.h"
+#include "chrome/grit/generated_resources.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/base/resource/resource_bundle.h"
#include "ui/views/controls/button/checkbox.h"
@@ -31,7 +31,7 @@ const int kTopInset = 10;
// Dialog for multi-profiles teleport warning.
class TeleportWarningView : public views::DialogDelegateView {
public:
- TeleportWarningView(base::Callback<void(bool)> on_accept);
+ explicit TeleportWarningView(base::Callback<void(bool)> on_accept);
virtual ~TeleportWarningView();
static void ShowDialog(const base::Callback<void(bool)> on_accept);
@@ -156,7 +156,7 @@ void TeleportWarningView::InitDialog() {
// Factory function.
void ShowMultiprofilesWarningDialog(
- const base::Callback<void(bool)> on_accept) {
+ const base::Callback<void(bool)> on_accept) {
TeleportWarningView::ShowDialog(on_accept);
}

Powered by Google App Engine
This is Rietveld 408576698