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

Side by Side Diff: chrome/browser/tab_contents/chrome_web_contents_view_mac_delegate.h

Issue 9600036: Move Render(View|Widget)Host and associated classes to content namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Respond to review comments. 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_TAB_CONTENTS_CHROME_WEB_CONTENTS_VIEW_MAC_DELEGATE_H_ 5 #ifndef CHROME_BROWSER_TAB_CONTENTS_CHROME_WEB_CONTENTS_VIEW_MAC_DELEGATE_H_
6 #define CHROME_BROWSER_TAB_CONTENTS_CHROME_WEB_CONTENTS_VIEW_MAC_DELEGATE_H_ 6 #define CHROME_BROWSER_TAB_CONTENTS_CHROME_WEB_CONTENTS_VIEW_MAC_DELEGATE_H_
7 #pragma once 7 #pragma once
8 8
9 #if defined(__OBJC__) 9 #if defined(__OBJC__)
10 10
(...skipping 12 matching lines...) Expand all
23 // live in chrome/. 23 // live in chrome/.
24 class ChromeWebContentsViewMacDelegate 24 class ChromeWebContentsViewMacDelegate
25 : public content::WebContentsViewMacDelegate { 25 : public content::WebContentsViewMacDelegate {
26 public: 26 public:
27 explicit ChromeWebContentsViewMacDelegate(content::WebContents* web_contents); 27 explicit ChromeWebContentsViewMacDelegate(content::WebContents* web_contents);
28 virtual ~ChromeWebContentsViewMacDelegate(); 28 virtual ~ChromeWebContentsViewMacDelegate();
29 29
30 // Overridden from WebContentsViewMacDelegate: 30 // Overridden from WebContentsViewMacDelegate:
31 virtual NSObject<RenderWidgetHostViewMacDelegate>* 31 virtual NSObject<RenderWidgetHostViewMacDelegate>*
32 CreateRenderWidgetHostViewDelegate( 32 CreateRenderWidgetHostViewDelegate(
33 RenderWidgetHost* render_widget_host) OVERRIDE; 33 content::RenderWidgetHost* render_widget_host) OVERRIDE;
34 virtual content::WebDragDestDelegate* DragDelegate() OVERRIDE; 34 virtual content::WebDragDestDelegate* DragDelegate() OVERRIDE;
35 virtual void ShowContextMenu( 35 virtual void ShowContextMenu(
36 const content::ContextMenuParams& params) OVERRIDE; 36 const content::ContextMenuParams& params) OVERRIDE;
37 virtual void NativeViewCreated(NSView* view) OVERRIDE; 37 virtual void NativeViewCreated(NSView* view) OVERRIDE;
38 virtual void NativeViewDestroyed(NSView* view) OVERRIDE; 38 virtual void NativeViewDestroyed(NSView* view) OVERRIDE;
39 39
40 private: 40 private:
41 // The context menu. Callbacks are asynchronous so we need to keep it around. 41 // The context menu. Callbacks are asynchronous so we need to keep it around.
42 scoped_ptr<RenderViewContextMenuMac> context_menu_; 42 scoped_ptr<RenderViewContextMenuMac> context_menu_;
43 43
(...skipping 13 matching lines...) Expand all
57 class WebContentsViewMacDelegate; 57 class WebContentsViewMacDelegate;
58 } 58 }
59 59
60 namespace chrome_web_contents_view_mac_delegate { 60 namespace chrome_web_contents_view_mac_delegate {
61 // Creates a ChromeWebContentsViewMacDelegate. 61 // Creates a ChromeWebContentsViewMacDelegate.
62 content::WebContentsViewMacDelegate* CreateWebContentsViewMacDelegate( 62 content::WebContentsViewMacDelegate* CreateWebContentsViewMacDelegate(
63 content::WebContents* web_contents); 63 content::WebContents* web_contents);
64 } 64 }
65 65
66 #endif // CHROME_BROWSER_TAB_CONTENTS_CHROME_WEB_CONTENTS_VIEW_MAC_DELEGATE_H_ 66 #endif // CHROME_BROWSER_TAB_CONTENTS_CHROME_WEB_CONTENTS_VIEW_MAC_DELEGATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698