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

Side by Side Diff: content/public/browser/web_contents_view_delegate.cc

Issue 489763002: MacViews: Gets a webview working in views_examples_with_content_exe Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase to master 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "content/public/browser/web_contents_view_delegate.h"
6
7 #include <stddef.h>
8
9 namespace content {
10
11 WebContentsViewDelegate::~WebContentsViewDelegate() {
12 }
13
14 WebDragDestDelegate* WebContentsViewDelegate::GetDragDestDelegate() {
15 return NULL;
16 }
17
18 void WebContentsViewDelegate::ShowContextMenu(
19 RenderFrameHost* render_frame_host,
20 const ContextMenuParams& params) {
21 }
22
23 bool WebContentsViewDelegate::StoreFocus() {
24 return false;
25 }
26
27 bool WebContentsViewDelegate::RestoreFocus() {
28 return false;
29 }
30
31 bool WebContentsViewDelegate::Focus() {
32 return false;
33 }
34
35 bool WebContentsViewDelegate::TakeFocus(bool reverse) {
36 return false;
37 }
38
39 void WebContentsViewDelegate::SizeChanged(const gfx::Size& size) {
40 }
41
42 WebContentsViewDelegateMac*
43 WebContentsViewDelegate::AsWebContentsViewDelegateMac() {
44 return NULL;
45 }
46
47 } // namespace content
OLDNEW
« no previous file with comments | « content/public/browser/web_contents_view_delegate.h ('k') | content/public/browser/web_contents_view_delegate_mac.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698