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

Unified Diff: chrome/browser/ui/constrained_window.cc

Issue 10870094: Constrained window sheet controller (test patch) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rename Created 8 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
« no previous file with comments | « chrome/browser/ui/constrained_window.h ('k') | chrome/browser/ui/constrained_window_tab_helper.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/constrained_window.cc
diff --git a/chrome/browser/ui/constrained_window.cc b/chrome/browser/ui/constrained_window.cc
index d00c070a9b04ac395548f79326e857653e45567d..13fc67cfaf286e478734b45cc330083068d708d8 100644
--- a/chrome/browser/ui/constrained_window.cc
+++ b/chrome/browser/ui/constrained_window.cc
@@ -6,9 +6,17 @@
#include "base/logging.h"
+const SkColor ConstrainedWindow::kBackgroundColor =
+ SkColorSetRGB(0xfb, 0xfb, 0xfb);
+const SkColor ConstrainedWindow::kTextColor = SkColorSetRGB(0x33, 0x33, 0x33);
+
void ConstrainedWindow::FocusConstrainedWindow() {
}
+bool ConstrainedWindow::GetCanShowConstrainedWindow() {
+ return true;
+}
+
gfx::NativeWindow ConstrainedWindow::GetNativeWindow() {
NOTREACHED();
return NULL;
« no previous file with comments | « chrome/browser/ui/constrained_window.h ('k') | chrome/browser/ui/constrained_window_tab_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698