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

Side by Side Diff: chrome/browser/renderer_context_menu/context_menu_content_type_factory.h

Issue 1548133002: Switch to standard integer types in chrome/browser/, part 3 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_RENDERER_CONTEXT_MENU_CONTEXT_MENU_CONTENT_TYPE_FACTORY_H _ 5 #ifndef CHROME_BROWSER_RENDERER_CONTEXT_MENU_CONTEXT_MENU_CONTENT_TYPE_FACTORY_H _
6 #define CHROME_BROWSER_RENDERER_CONTEXT_MENU_CONTEXT_MENU_CONTENT_TYPE_FACTORY_H _ 6 #define CHROME_BROWSER_RENDERER_CONTEXT_MENU_CONTEXT_MENU_CONTENT_TYPE_FACTORY_H _
7 7
8 #include "base/macros.h"
8 #include "content/public/common/context_menu_params.h" 9 #include "content/public/common/context_menu_params.h"
9 10
10 class ContextMenuContentType; 11 class ContextMenuContentType;
11 12
12 namespace content { 13 namespace content {
13 class WebContents; 14 class WebContents;
14 } 15 }
15 16
16 class ContextMenuContentTypeFactory { 17 class ContextMenuContentTypeFactory {
17 public: 18 public:
(...skipping 11 matching lines...) Expand all
29 virtual ~ContextMenuContentTypeFactory(); 30 virtual ~ContextMenuContentTypeFactory();
30 31
31 static ContextMenuContentType* CreateInternal( 32 static ContextMenuContentType* CreateInternal(
32 content::WebContents* web_contents, 33 content::WebContents* web_contents,
33 const content::ContextMenuParams& params); 34 const content::ContextMenuParams& params);
34 35
35 DISALLOW_COPY_AND_ASSIGN(ContextMenuContentTypeFactory); 36 DISALLOW_COPY_AND_ASSIGN(ContextMenuContentTypeFactory);
36 }; 37 };
37 38
38 #endif // CHROME_BROWSER_RENDERER_CONTEXT_MENU_CONTEXT_MENU_CONTENT_TYPE_FACTOR Y_H_ 39 #endif // CHROME_BROWSER_RENDERER_CONTEXT_MENU_CONTEXT_MENU_CONTENT_TYPE_FACTOR Y_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698