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

Side by Side Diff: content/shell/browser/shell_web_contents_view_delegate.h

Issue 507363002: MacViews: Guard Objective-C bits in content::WebContentsViewDelegate with __OBJC__ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: OS_MACOSX -> __OBJC__ + void* Created 6 years, 3 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 CONTENT_SHELL_BROWSER_SHELL_WEB_CONTENTS_VIEW_DELEGATE_H_ 5 #ifndef CONTENT_SHELL_BROWSER_SHELL_WEB_CONTENTS_VIEW_DELEGATE_H_
6 #define CONTENT_SHELL_BROWSER_SHELL_WEB_CONTENTS_VIEW_DELEGATE_H_ 6 #define CONTENT_SHELL_BROWSER_SHELL_WEB_CONTENTS_VIEW_DELEGATE_H_
7 7
8 #include "content/public/browser/web_contents.h" 8 #include "content/public/browser/web_contents.h"
9 #include "content/public/browser/web_contents_view_delegate.h" 9 #include "content/public/browser/web_contents_view_delegate.h"
10 #include "content/public/common/context_menu_params.h" 10 #include "content/public/common/context_menu_params.h"
11 11
12 namespace content { 12 namespace content {
13 13
14 class ShellWebContentsViewDelegate : public WebContentsViewDelegate { 14 class ShellWebContentsViewDelegate : public WebContentsViewDelegate {
15 public: 15 public:
16 explicit ShellWebContentsViewDelegate(WebContents* web_contents); 16 explicit ShellWebContentsViewDelegate(WebContents* web_contents);
17 virtual ~ShellWebContentsViewDelegate(); 17 virtual ~ShellWebContentsViewDelegate();
18 18
19 // Overridden from WebContentsViewDelegate: 19 // Overridden from WebContentsViewDelegate:
20 virtual void ShowContextMenu(RenderFrameHost* render_frame_host, 20 virtual void ShowContextMenu(RenderFrameHost* render_frame_host,
21 const ContextMenuParams& params) OVERRIDE; 21 const ContextMenuParams& params) OVERRIDE;
22 virtual WebDragDestDelegate* GetDragDestDelegate() OVERRIDE;
23 22
24 #if defined(OS_MACOSX) 23 #if defined(OS_MACOSX)
25 virtual NSObject<RenderWidgetHostViewMacDelegate>*
26 CreateRenderWidgetHostViewDelegate(
27 RenderWidgetHost* render_widget_host) OVERRIDE;
28 void ActionPerformed(int id); 24 void ActionPerformed(int id);
29 #elif defined(OS_WIN) 25 #elif defined(OS_WIN)
30 virtual void StoreFocus() OVERRIDE;
31 virtual void RestoreFocus() OVERRIDE;
32 virtual bool Focus() OVERRIDE;
33 virtual void TakeFocus(bool reverse) OVERRIDE;
34 virtual void SizeChanged(const gfx::Size& size) OVERRIDE;
35 void MenuItemSelected(int selection); 26 void MenuItemSelected(int selection);
36 #endif 27 #endif
37 28
38 private: 29 private:
39 WebContents* web_contents_; 30 WebContents* web_contents_;
40 ContextMenuParams params_; 31 ContextMenuParams params_;
41 32
42 DISALLOW_COPY_AND_ASSIGN(ShellWebContentsViewDelegate); 33 DISALLOW_COPY_AND_ASSIGN(ShellWebContentsViewDelegate);
43 }; 34 };
44 35
45 } // namespace content 36 } // namespace content
46 37
47 #endif // CONTENT_SHELL_BROWSER_SHELL_WEB_CONTENTS_VIEW_DELEGATE_H_ 38 #endif // CONTENT_SHELL_BROWSER_SHELL_WEB_CONTENTS_VIEW_DELEGATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698