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..a5bab60af28e4c827e6cc95013d548d59fa9bda4 100644 |
--- a/chrome/browser/ui/autofill/password_generation_popup_view.cc |
+++ b/chrome/browser/ui/autofill/password_generation_popup_view.cc |
@@ -1,21 +1,18 @@ |
-// Copyright 2014 The Chromium Authors. All rights reserved. |
+// Copyright (c) 2014 The Chromium Authors. All rights reserved. |
Ilya Sherman
2014/05/09 21:51:28
Ultra nit: No need for "(c)"
Patrick Dubroy
2014/05/12 14:13:39
Done.
|
// 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) |