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

Unified Diff: sky/sdk/lib/framework/theme2/view_configuration.dart

Issue 1177383006: Rename all the things (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: fix imports Created 5 years, 6 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 | « sky/sdk/lib/framework/theme2/typography.dart ('k') | sky/sdk/lib/framework/widgets/animated_component.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/sdk/lib/framework/theme2/view_configuration.dart
diff --git a/sky/sdk/lib/framework/theme2/view_configuration.dart b/sky/sdk/lib/framework/theme2/view_configuration.dart
deleted file mode 100644
index b31a5383869721c5b700e42b9a5add3d1e9d5911..0000000000000000000000000000000000000000
--- a/sky/sdk/lib/framework/theme2/view_configuration.dart
+++ /dev/null
@@ -1,40 +0,0 @@
-// Copyright 2015 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-// Modeled after Android's ViewConfiguration:
-// https://github.com/android/platform_frameworks_base/blob/master/core/java/android/view/ViewConfiguration.java
-
-const double kNotificationAreaHeight = 25.0;
-// TODO(ianh): Figure out actual specced height for status bar
-const double kStatusBarHeight = 50.0;
-
-// TODO(eseidel) Toolbar needs to change size based on orientation:
-// http://www.google.com/design/spec/layout/structure.html#structure-app-bar
-// Mobile Landscape: 48dp
-// Mobile Portrait: 56dp
-// Tablet/Desktop: 64dp
-const double kToolBarHeight = 56.0;
-
-const double kMaterialDrawerHeight = 140.0;
-const double kScrollbarSize = 10.0;
-const double kScrollbarFadeDuration = 250.0;
-const double kScrollbarFadeDelay = 300.0;
-const double kFadingEdgeLength = 12.0;
-const double kPressedStateDuration = 64.0;
-const double kDefaultLongPressTimeout = 500.0;
-const double kTapTimeout = 100.0;
-const double kJumpTapTimeout = 500.0;
-const double kDoubleTapTimeout = 300.0;
-const double kDoubleTapMinTime = 40.0;
-const double kHoverTapTimeout = 150.0;
-const double kHoverTapSlop = 20.0;
-const double kZoomControlsTimeout = 3000.0;
-const double kEdgeSlop = 12.0;
-const double kTouchSlop = 8.0;
-const double kDoubleTapTouchSlop = kTouchSlop;
-const double kPagingTouchSlop = kTouchSlop * 2.0;
-const double kDoubleTapSlop = 100.0;
-const double kWindowTouchSlop = 16.0;
-const double kMinFlingVelocity = 50.0;
-const double kMaxFlingVelocity = 8000.0;
« no previous file with comments | « sky/sdk/lib/framework/theme2/typography.dart ('k') | sky/sdk/lib/framework/widgets/animated_component.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698