| Index: chrome/browser/ui/views/tab_contents/native_tab_contents_view_views.h
|
| ===================================================================
|
| --- chrome/browser/ui/views/tab_contents/native_tab_contents_view_views.h (revision 110826)
|
| +++ chrome/browser/ui/views/tab_contents/native_tab_contents_view_views.h (working copy)
|
| @@ -1,52 +0,0 @@
|
| -// Copyright (c) 2011 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 CHROME_BROWSER_UI_VIEWS_TAB_CONTENTS_NATIVE_TAB_CONTENTS_VIEW_VIEWS_H_
|
| -#define CHROME_BROWSER_UI_VIEWS_TAB_CONTENTS_NATIVE_TAB_CONTENTS_VIEW_VIEWS_H_
|
| -#pragma once
|
| -
|
| -#include "chrome/browser/ui/views/tab_contents/native_tab_contents_view.h"
|
| -#include "views/widget/native_widget_views.h"
|
| -
|
| -class TabContents;
|
| -
|
| -namespace views {
|
| -class MouseEvent;
|
| -}
|
| -
|
| -class NativeTabContentsViewViews : public views::NativeWidgetViews,
|
| - public NativeTabContentsView {
|
| - public:
|
| - explicit NativeTabContentsViewViews(
|
| - internal::NativeTabContentsViewDelegate* delegate);
|
| - virtual ~NativeTabContentsViewViews();
|
| -
|
| - private:
|
| - // Overridden from NativeWidgetViews:
|
| - virtual void OnBoundsChanged(const gfx::Rect& new_bounds,
|
| - const gfx::Rect& old_bounds) OVERRIDE;
|
| - virtual bool OnMouseEvent(const views::MouseEvent& event) OVERRIDE;
|
| -
|
| - // Overridden from NativeTabContentsView:
|
| - virtual void InitNativeTabContentsView() OVERRIDE;
|
| - virtual void Unparent() OVERRIDE;
|
| - virtual RenderWidgetHostView* CreateRenderWidgetHostView(
|
| - RenderWidgetHost* render_widget_host) OVERRIDE;
|
| - virtual gfx::NativeWindow GetTopLevelNativeWindow() const OVERRIDE;
|
| - virtual void SetPageTitle(const string16& title) OVERRIDE;
|
| - virtual void StartDragging(const WebDropData& drop_data,
|
| - WebKit::WebDragOperationsMask ops,
|
| - const SkBitmap& image,
|
| - const gfx::Point& image_offset) OVERRIDE;
|
| - virtual void CancelDrag() OVERRIDE;
|
| - virtual bool IsDoingDrag() const OVERRIDE;
|
| - virtual void SetDragCursor(WebKit::WebDragOperation operation) OVERRIDE;
|
| - virtual views::NativeWidget* AsNativeWidget() OVERRIDE;
|
| -
|
| - internal::NativeTabContentsViewDelegate* delegate_;
|
| -
|
| - DISALLOW_COPY_AND_ASSIGN(NativeTabContentsViewViews);
|
| -};
|
| -
|
| -#endif // CHROME_BROWSER_UI_VIEWS_TAB_CONTENTS_NATIVE_TAB_CONTENTS_VIEW_VIEWS_H_
|
|
|