diff options
author | mohsen <mohsen@chromium.org> | 2014-12-08 13:06:46 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-12-08 21:07:39 +0000 |
commit | 29fd405ca491a6fcf0dde6277d92d44300cb2926 (patch) | |
tree | 23c5800d7f015a9ed1c825f478c561119146db9a /ui/touch_selection/ui_touch_selection_export.h | |
parent | 57e80c70462acc1bea10385ee14c0bd31a3997bf (diff) | |
download | chromium_src-29fd405ca491a6fcf0dde6277d92d44300cb2926.zip chromium_src-29fd405ca491a6fcf0dde6277d92d44300cb2926.tar.gz chromium_src-29fd405ca491a6fcf0dde6277d92d44300cb2926.tar.bz2 |
Move TouchSelectionController from content to ui
This patch is only moving new unified touch selection files from
content/ to ui/touch_selection/. This is the first step to allow Aura
use the new unified TouchSelectionController.
The only change to TouchSelectionController needed for this move is
replacing use of cc::ViewportSelectionBound with ui::SelectionBound.
The actual use of the new touch selection for Aura will happen in future
CL(s). After that, we can remove current touch selection code from
ui/base/touch/.
BUG=399721
Review URL: https://codereview.chromium.org/759433002
Cr-Commit-Position: refs/heads/master@{#307336}
Diffstat (limited to 'ui/touch_selection/ui_touch_selection_export.h')
-rw-r--r-- | ui/touch_selection/ui_touch_selection_export.h | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/ui/touch_selection/ui_touch_selection_export.h b/ui/touch_selection/ui_touch_selection_export.h new file mode 100644 index 0000000..e1f80bbc --- /dev/null +++ b/ui/touch_selection/ui_touch_selection_export.h @@ -0,0 +1,37 @@ +// Copyright 2014 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. + +#ifndef UI_TOUCH_SELECTION_UI_TOUCH_SELECTION_EXPORT_H_ +#define UI_TOUCH_SELECTION_UI_TOUCH_SELECTION_EXPORT_H_ + +// Defines UI_TOUCH_SELECTION_EXPORT so that functionality implemented by the UI +// touch selection module can be exported to consumers. + +#if defined(COMPONENT_BUILD) + +#if defined(WIN32) + +#if defined(UI_TOUCH_SELECTION_IMPLEMENTATION) +#define UI_TOUCH_SELECTION_EXPORT __declspec(dllexport) +#else +#define UI_TOUCH_SELECTION_EXPORT __declspec(dllimport) +#endif + +#else // !defined(WIN32) + +#if defined(UI_TOUCH_SELECTION_IMPLEMENTATION) +#define UI_TOUCH_SELECTION_EXPORT __attribute__((visibility("default"))) +#else +#define UI_TOUCH_SELECTION_EXPORT +#endif + +#endif + +#else // !defined(COMPONENT_BUILD) + +#define UI_TOUCH_SELECTION_EXPORT + +#endif + +#endif // UI_TOUCH_SELECTION_UI_TOUCH_SELECTION_EXPORT_H_ |