| Index: views/view.h
|
| diff --git a/views/view.h b/views/view.h
|
| index e8f8e5866c49fd7e9a1f9c90db3deda9dafc3426..25f074771b369e542bbbe16f7936a42a609f7fff 100644
|
| --- a/views/view.h
|
| +++ b/views/view.h
|
| @@ -30,6 +30,12 @@ using ui::OSExchangeData;
|
| class SkMatrix;
|
| class ViewAccessibility;
|
|
|
| +#if defined(OS_CHROMEOS) && defined(TOUCH_UI)
|
| +namespace chromeos {
|
| +class DOMBrowserView;
|
| +}
|
| +#endif
|
| +
|
| namespace gfx {
|
| class Canvas;
|
| class Insets;
|
| @@ -1167,7 +1173,9 @@ class View : public AcceleratorTarget {
|
| friend class RootView;
|
| friend class FocusManager;
|
| friend class ViewStorage;
|
| -
|
| +#if defined(OS_CHROMEOS) && defined(TOUCH_UI)
|
| + friend class chromeos::DOMBrowserView;
|
| +#endif
|
| // Used to track a drag. RootView passes this into
|
| // ProcessMousePressed/Dragged.
|
| struct DragInfo {
|
|
|