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

Unified Diff: chrome/browser/tab_contents/chrome_web_contents_view_delegate_win.h

Issue 9700023: Move creation of content TabContentsViews to content so that we can hide these headers through DEPS… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix mac Created 8 years, 9 months 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/tab_contents/chrome_web_contents_view_delegate_win.h
===================================================================
--- chrome/browser/tab_contents/chrome_web_contents_view_delegate_win.h (revision 126521)
+++ chrome/browser/tab_contents/chrome_web_contents_view_delegate_win.h (working copy)
@@ -2,14 +2,14 @@
// 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_CHROME_WEB_CONTENTS_VIEW_WIN_DELEGATE_H_
-#define CHROME_BROWSER_TAB_CONTENTS_CHROME_WEB_CONTENTS_VIEW_WIN_DELEGATE_H_
+#ifndef CHROME_BROWSER_TAB_CONTENTS_CHROME_WEB_CONTENTS_VIEW_DELEGATE_WIN_H_
+#define CHROME_BROWSER_TAB_CONTENTS_CHROME_WEB_CONTENTS_VIEW_DELEGATE_WIN_H_
#pragma once
#include "base/basictypes.h"
#include "base/compiler_specific.h"
#include "base/memory/scoped_ptr.h"
-#include "content/public/browser/web_contents_view_win_delegate.h"
+#include "content/public/browser/web_contents_view_delegate.h"
class ConstrainedWindowViews;
class RenderViewContextMenuViews;
@@ -26,13 +26,13 @@
// A chrome specific class that extends TabContentsViewWin with features like
// constrained windows, which live in chrome.
-class ChromeWebContentsViewWinDelegate
- : public content::WebContentsViewWinDelegate {
+class ChromeWebContentsViewDelegateWin
+ : public content::WebContentsViewDelegate {
public:
- explicit ChromeWebContentsViewWinDelegate(content::WebContents* web_contents);
- virtual ~ChromeWebContentsViewWinDelegate();
+ explicit ChromeWebContentsViewDelegateWin(content::WebContents* web_contents);
+ virtual ~ChromeWebContentsViewDelegateWin();
- // Overridden from WebContentsViewWinDelegate:
+ // Overridden from WebContentsViewDelegate:
virtual content::WebDragDestDelegate* GetDragDestDelegate() OVERRIDE;
virtual void StoreFocus() OVERRIDE;
virtual void RestoreFocus() OVERRIDE;
@@ -59,7 +59,7 @@
content::WebContents* web_contents_;
- DISALLOW_COPY_AND_ASSIGN(ChromeWebContentsViewWinDelegate);
+ DISALLOW_COPY_AND_ASSIGN(ChromeWebContentsViewDelegateWin);
};
-#endif // CHROME_BROWSER_TAB_CONTENTS_CHROME_WEB_CONTENTS_VIEW_WIN_DELEGATE_H_
+#endif // CHROME_BROWSER_TAB_CONTENTS_CHROME_WEB_CONTENTS_VIEW_DELEGATE_WIN_H_

Powered by Google App Engine
This is Rietveld 408576698