| Index: content/browser/tab_contents/tab_contents_view_helper.h
|
| diff --git a/chrome/browser/tab_contents/render_view_host_delegate_helper.h b/content/browser/tab_contents/tab_contents_view_helper.h
|
| similarity index 89%
|
| rename from chrome/browser/tab_contents/render_view_host_delegate_helper.h
|
| rename to content/browser/tab_contents/tab_contents_view_helper.h
|
| index 1d38de47e2b0643cfb00c7d8accd04743703de93..5b5db015dafad792dbac92c30af8f8f01d6961fb 100644
|
| --- a/chrome/browser/tab_contents/render_view_host_delegate_helper.h
|
| +++ b/content/browser/tab_contents/tab_contents_view_helper.h
|
| @@ -2,8 +2,8 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#ifndef CHROME_BROWSER_TAB_CONTENTS_RENDER_VIEW_HOST_DELEGATE_HELPER_H_
|
| -#define CHROME_BROWSER_TAB_CONTENTS_RENDER_VIEW_HOST_DELEGATE_HELPER_H_
|
| +#ifndef CONTENT_BROWSER_TAB_CONTENTS_TAB_CONTENTS_VIEW_HELPER_H_
|
| +#define CONTENT_BROWSER_TAB_CONTENTS_TAB_CONTENTS_VIEW_HELPER_H_
|
| #pragma once
|
|
|
| #include <map>
|
| @@ -33,10 +33,10 @@ class Rect;
|
|
|
| // Provides helper methods that provide common implementations of some
|
| // TabContentsView methods.
|
| -class RenderViewHostDelegateViewHelper : public content::NotificationObserver {
|
| +class TabContentsViewHelper : public content::NotificationObserver {
|
| public:
|
| - RenderViewHostDelegateViewHelper();
|
| - virtual ~RenderViewHostDelegateViewHelper();
|
| + TabContentsViewHelper();
|
| + virtual ~TabContentsViewHelper();
|
|
|
| // Creates a new window; call |ShowCreatedWindow| below to show it.
|
| TabContents* CreateNewWindow(content::WebContents* web_contents,
|
| @@ -93,7 +93,7 @@ class RenderViewHostDelegateViewHelper : public content::NotificationObserver {
|
| // Registers and unregisters us for notifications.
|
| content::NotificationRegistrar registrar_;
|
|
|
| - DISALLOW_COPY_AND_ASSIGN(RenderViewHostDelegateViewHelper);
|
| + DISALLOW_COPY_AND_ASSIGN(TabContentsViewHelper);
|
| };
|
|
|
| -#endif // CHROME_BROWSER_TAB_CONTENTS_RENDER_VIEW_HOST_DELEGATE_HELPER_H_
|
| +#endif // CONTENT_BROWSER_TAB_CONTENTS_TAB_CONTENTS_VIEW_HELPER_H_
|
|
|