summaryrefslogtreecommitdiffstats
path: root/content/public
diff options
context:
space:
mode:
authorscottmg@google.com <scottmg@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2012-02-17 00:29:01 +0000
committerscottmg@google.com <scottmg@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2012-02-17 00:29:01 +0000
commit7dfb6960875fb0fd31f1a4fa52d81380e13a7783 (patch)
tree1f609f9086999f066fe129130398bc39b8ffb1c3 /content/public
parent0c5dea9b5dd14ce6e36dff28e0853c3204073ce3 (diff)
downloadchromium_src-7dfb6960875fb0fd31f1a4fa52d81380e13a7783.zip
chromium_src-7dfb6960875fb0fd31f1a4fa52d81380e13a7783.tar.gz
chromium_src-7dfb6960875fb0fd31f1a4fa52d81380e13a7783.tar.bz2
More touch UI tab strip changes
- Moves test for touch mode out to slightly higher level for availability to rest of views. - When in touch mode, sets a large minimum size for tabs so they're always easily selectable. - beginnings of drag controller and tab strip layout for stacking (only at left edge so far). Currently, drag controller does not commit positions, and tabs snap back to original location on drag end. BUG=106938 TEST=drag tabstrip to left in touch mode Review URL: https://chromiumcodereview.appspot.com/9385024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@122408 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/public')
-rw-r--r--content/public/common/content_switches.cc3
-rw-r--r--content/public/common/content_switches.h1
2 files changed, 0 insertions, 4 deletions
diff --git a/content/public/common/content_switches.cc b/content/public/common/content_switches.cc
index 708fdd6..7c7849b 100644
--- a/content/public/common/content_switches.cc
+++ b/content/public/common/content_switches.cc
@@ -530,9 +530,6 @@ const char kSkipGpuDataLoading[] = "skip-gpu-data-loading";
// Runs the security test for the renderer sandbox.
const char kTestSandbox[] = "test-sandbox";
-// Enables UI changes that make it easier to use with a touchscreen.
-const char kTouchOptimizedUI[] = "touch-optimized-ui";
-
// Causes TRACE_EVENT flags to be recorded from startup. Optionally, can
// specify the specific trace categories to include (e.g.
// --trace-startup=base,net) otherwise, all events are recorded. Setting this
diff --git a/content/public/common/content_switches.h b/content/public/common/content_switches.h
index 1c05a199..5b4a624 100644
--- a/content/public/common/content_switches.h
+++ b/content/public/common/content_switches.h
@@ -161,7 +161,6 @@ extern const char kShowPaintRects[];
CONTENT_EXPORT extern const char kSingleProcess[];
CONTENT_EXPORT extern const char kSkipGpuDataLoading[];
CONTENT_EXPORT extern const char kTestSandbox[];
-extern const char kTouchOptimizedUI[];
extern const char kTraceStartup[];
extern const char kTraceStartupFile[];
extern const char kTraceStartupDuration[];