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

Unified Diff: chrome/browser/ui/autofill/password_generation_popup_view.cc

Issue 267183002: Password manager: Implement password generation UI for Mac. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address isherman's comments. Created 6 years, 7 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/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)

Powered by Google App Engine
This is Rietveld 408576698