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

Unified Diff: chrome/browser/ui/views/tab_contents/native_tab_contents_container_views.h

Issue 8598024: Now that we are doing a hard-cut-over to Aura, remove a bunch of *Views based classes that are ob... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 1 month 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
Index: chrome/browser/ui/views/tab_contents/native_tab_contents_container_views.h
===================================================================
--- chrome/browser/ui/views/tab_contents/native_tab_contents_container_views.h (revision 110826)
+++ chrome/browser/ui/views/tab_contents/native_tab_contents_container_views.h (working copy)
@@ -1,44 +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_CONTAINER_VIEWS_H_
-#define CHROME_BROWSER_UI_VIEWS_TAB_CONTENTS_NATIVE_TAB_CONTENTS_CONTAINER_VIEWS_H_
-#pragma once
-
-#include "chrome/browser/ui/views/tab_contents/native_tab_contents_container.h"
-#include "views/view.h"
-
-class NativeTabContentsContainerViews : public NativeTabContentsContainer,
- public views::View {
- public:
- explicit NativeTabContentsContainerViews(TabContentsContainer* container);
- virtual ~NativeTabContentsContainerViews();
-
- // Overridden from NativeTabContentsContainer:
- virtual void AttachContents(TabContents* contents) OVERRIDE;
- virtual void DetachContents(TabContents* contents) OVERRIDE;
- virtual void SetFastResize(bool fast_resize) OVERRIDE;
- virtual bool GetFastResize() const OVERRIDE;
- virtual bool FastResizeAtLastLayout() const OVERRIDE;
- virtual void RenderViewHostChanged(RenderViewHost* old_host,
- RenderViewHost* new_host) OVERRIDE;
- virtual void TabContentsFocused(TabContents* tab_contents) OVERRIDE;
- virtual views::View* GetView() OVERRIDE;
-
- // Overridden from views::View:
- virtual bool SkipDefaultKeyEventProcessing(const views::KeyEvent& e) OVERRIDE;
- virtual bool IsFocusable() const OVERRIDE;
- virtual void OnFocus() OVERRIDE;
- virtual void RequestFocus() OVERRIDE;
- virtual void AboutToRequestFocusFromTabTraversal(bool reverse) OVERRIDE;
- virtual void GetAccessibleState(ui::AccessibleViewState* state) OVERRIDE;
- virtual gfx::NativeViewAccessible GetNativeViewAccessible();
-
- private:
- TabContentsContainer* container_;
-
- DISALLOW_COPY_AND_ASSIGN(NativeTabContentsContainerViews);
-};
-
-#endif // CHROME_BROWSER_UI_VIEWS_TAB_CONTENTS_NATIVE_TAB_CONTENTS_CONTAINER_VIEWS_H_

Powered by Google App Engine
This is Rietveld 408576698