Index: chrome/browser/ui/autofill/password_generation_popup_view.cc |
diff --git a/chrome/browser/ui/autofill/password_generation_popup_view.cc b/chrome/browser/ui/autofill/password_generation_popup_view.cc |
index dd250ae9251636d30ce3af90e0f8f14ff5f7871c..e2e344f9efb3a197232f40af012628039a6284f5 100644 |
--- a/chrome/browser/ui/autofill/password_generation_popup_view.cc |
+++ b/chrome/browser/ui/autofill/password_generation_popup_view.cc |
@@ -2,20 +2,17 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#include <cstddef> |
- |
#include "chrome/browser/ui/autofill/password_generation_popup_view.h" |
-// Non-aura is not implemented yet. |
-#if !defined(USE_AURA) |
- |
namespace autofill { |
-PasswordGenerationPopupView* PasswordGenerationPopupView::Create( |
- PasswordGenerationPopupController* controller) { |
- return NULL; |
-} |
+const SkColor PasswordGenerationPopupView::kExplanatoryTextBackgroundColor = |
+ SkColorSetRGB(0xF5, 0xF5, 0xF5); |
+const SkColor PasswordGenerationPopupView::kExplanatoryTextColor = |
+ SkColorSetRGB(0x66, 0x66, 0x66); |
+const SkColor PasswordGenerationPopupView::kDividerColor = |
+ SkColorSetRGB(0xE9, 0xE9, 0xE9); |
+const SkColor PasswordGenerationPopupView::kLinkColor = |
+ SkColorSetRGB(0x55, 0x59, 0xFE); |
} // namespace autofill |
- |
-#endif // #if !defined(USE_AURA) |