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

Side by Side Diff: chrome/browser/guest_view/mime_handler_view/chrome_mime_handler_view_guest_delegate.h

Issue 1550593002: Switch to standard integer types in chrome/browser/, part 2 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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 CHROME_BROWSER_GUEST_VIEW_MIME_HANDLER_VIEW_CHROME_MIME_HANDLER_VIEW_GUE ST_DELEGATE_H_ 5 #ifndef CHROME_BROWSER_GUEST_VIEW_MIME_HANDLER_VIEW_CHROME_MIME_HANDLER_VIEW_GUE ST_DELEGATE_H_
6 #define CHROME_BROWSER_GUEST_VIEW_MIME_HANDLER_VIEW_CHROME_MIME_HANDLER_VIEW_GUE ST_DELEGATE_H_ 6 #define CHROME_BROWSER_GUEST_VIEW_MIME_HANDLER_VIEW_CHROME_MIME_HANDLER_VIEW_GUE ST_DELEGATE_H_
7 7
8 #include "base/macros.h"
8 #include "extensions/browser/guest_view/mime_handler_view/mime_handler_view_gues t_delegate.h" 9 #include "extensions/browser/guest_view/mime_handler_view/mime_handler_view_gues t_delegate.h"
9 10
10 namespace content { 11 namespace content {
11 class WebContents; 12 class WebContents;
12 struct ContextMenuParams; 13 struct ContextMenuParams;
13 } // namespace content 14 } // namespace content
14 15
15 namespace extensions { 16 namespace extensions {
16 17
17 class ChromeMimeHandlerViewGuestDelegate : public MimeHandlerViewGuestDelegate { 18 class ChromeMimeHandlerViewGuestDelegate : public MimeHandlerViewGuestDelegate {
18 public: 19 public:
19 ChromeMimeHandlerViewGuestDelegate(); 20 ChromeMimeHandlerViewGuestDelegate();
20 ~ChromeMimeHandlerViewGuestDelegate() override; 21 ~ChromeMimeHandlerViewGuestDelegate() override;
21 22
22 // MimeHandlerViewGuestDelegate. 23 // MimeHandlerViewGuestDelegate.
23 bool HandleContextMenu(content::WebContents* web_contents, 24 bool HandleContextMenu(content::WebContents* web_contents,
24 const content::ContextMenuParams& params) override; 25 const content::ContextMenuParams& params) override;
25 26
26 private: 27 private:
27 DISALLOW_COPY_AND_ASSIGN(ChromeMimeHandlerViewGuestDelegate); 28 DISALLOW_COPY_AND_ASSIGN(ChromeMimeHandlerViewGuestDelegate);
28 }; 29 };
29 30
30 } // namespace extensions 31 } // namespace extensions
31 32
32 #endif // CHROME_BROWSER_GUEST_VIEW_MIME_HANDLER_VIEW_CHROME_MIME_HANDLER_VIEW_ GUEST_DELEGATE_H_ 33 #endif // CHROME_BROWSER_GUEST_VIEW_MIME_HANDLER_VIEW_CHROME_MIME_HANDLER_VIEW_ GUEST_DELEGATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698