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

Unified Diff: chrome/browser/ui/views/frame/app_non_client_frame_view_aura.cc

Issue 11192004: Reland - ash: Add test for maximized app window frame switching (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix windows expect_eq Created 8 years, 2 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/views/frame/app_non_client_frame_view_aura.cc
diff --git a/chrome/browser/ui/views/frame/app_non_client_frame_view_aura.cc b/chrome/browser/ui/views/frame/app_non_client_frame_view_aura.cc
index 16fa207187a7800be22aa76d72ccd3663e238960..fa4ad98a438589c923d012e5213e7b1b769b4cb2 100644
--- a/chrome/browser/ui/views/frame/app_non_client_frame_view_aura.cc
+++ b/chrome/browser/ui/views/frame/app_non_client_frame_view_aura.cc
@@ -163,6 +163,9 @@ class AppNonClientFrameViewAura::FrameObserver : public views::WidgetObserver {
};
// static
+const char AppNonClientFrameViewAura::kViewClassName[] =
+ "AppNonClientFrameViewAura";
+// static
const char AppNonClientFrameViewAura::kControlWindowName[] =
"AppNonClientFrameViewAuraControls";
@@ -243,6 +246,10 @@ int AppNonClientFrameViewAura::GetThemeBackgroundXInset() const {
void AppNonClientFrameViewAura::UpdateThrobber(bool running) {
}
+std::string AppNonClientFrameViewAura::GetClassName() const {
+ return kViewClassName;
+}
+
void AppNonClientFrameViewAura::OnBoundsChanged(
const gfx::Rect& previous_bounds) {
if (control_widget_)

Powered by Google App Engine
This is Rietveld 408576698