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

Side by Side Diff: extensions/browser/guest_view/web_view/web_view_guest_delegate.h

Issue 1102173002: Move GuestView layer in browser to components (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed Mac Build + GN Test builds Created 5 years, 7 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 2014 The Chromium Authors. All rights reserved. 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 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 EXTENSIONS_BROWSER_GUEST_VIEW_WEB_VIEW_WEB_VIEW_GUEST_DELEGATE_H_ 5 #ifndef EXTENSIONS_BROWSER_GUEST_VIEW_WEB_VIEW_WEB_VIEW_GUEST_DELEGATE_H_
6 #define EXTENSIONS_BROWSER_GUEST_VIEW_WEB_VIEW_WEB_VIEW_GUEST_DELEGATE_H_ 6 #define EXTENSIONS_BROWSER_GUEST_VIEW_WEB_VIEW_WEB_VIEW_GUEST_DELEGATE_H_
7 7
8 #include "base/callback.h" 8 #include "base/callback.h"
9 #include "extensions/browser/guest_view/guest_view_base.h" 9 #include "components/guest_view/browser/guest_view_base.h"
10 10
11 namespace content { 11 namespace content {
12 class RenderViewHost; 12 class RenderViewHost;
13 class WebContents; 13 class WebContents;
14 } // namespace content 14 } // namespace content
15 15
16 namespace extensions { 16 namespace extensions {
17 17
18 class WebViewGuest; 18 class WebViewGuest;
19 19
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 // menu items to contain only the items from |items|. 59 // menu items to contain only the items from |items|.
60 // |items| == NULL means no filtering will be applied. 60 // |items| == NULL means no filtering will be applied.
61 virtual void OnShowContextMenu( 61 virtual void OnShowContextMenu(
62 int request_id, 62 int request_id,
63 const MenuItemVector* items) = 0; 63 const MenuItemVector* items) = 0;
64 }; 64 };
65 65
66 } // namespace extensions 66 } // namespace extensions
67 67
68 #endif // EXTENSIONS_BROWSER_GUEST_VIEW_WEB_VIEW_WEB_VIEW_GUEST_DELEGATE_H_ 68 #endif // EXTENSIONS_BROWSER_GUEST_VIEW_WEB_VIEW_WEB_VIEW_GUEST_DELEGATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698