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

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

Issue 1117893002: Moving extension code out of "components/" to avoid layering violations. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressing nit. 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 CHROME_BROWSER_RENDERER_CONTEXT_MENU_CONTEXT_MENU_CONTENT_TYPE_PLATFORM_ APP_H_ 5 #ifndef CHROME_BROWSER_RENDERER_CONTEXT_MENU_CONTEXT_MENU_CONTENT_TYPE_PLATFORM_ APP_H_
6 #define CHROME_BROWSER_RENDERER_CONTEXT_MENU_CONTEXT_MENU_CONTENT_TYPE_PLATFORM_ APP_H_ 6 #define CHROME_BROWSER_RENDERER_CONTEXT_MENU_CONTEXT_MENU_CONTENT_TYPE_PLATFORM_ APP_H_
7 7
8 #include "components/renderer_context_menu/context_menu_content_type.h" 8 #include "components/renderer_context_menu/context_menu_content_type.h"
9 9
10 namespace extensions {
11 class Extension;
12 }
13
10 class ContextMenuContentTypePlatformApp : public ContextMenuContentType { 14 class ContextMenuContentTypePlatformApp : public ContextMenuContentType {
11 public: 15 public:
12 ~ContextMenuContentTypePlatformApp() override; 16 ~ContextMenuContentTypePlatformApp() override;
13 17
14 // ContextMenuContentType overrides. 18 // ContextMenuContentType overrides.
15 bool SupportsGroup(int group) override; 19 bool SupportsGroup(int group) override;
16 20
17 protected: 21 protected:
18 ContextMenuContentTypePlatformApp(content::WebContents* web_contents, 22 ContextMenuContentTypePlatformApp(content::WebContents* web_contents,
19 const content::ContextMenuParams& params); 23 const content::ContextMenuParams& params);
20 24
21 private: 25 private:
22 friend class ContextMenuContentTypeFactory; 26 friend class ContextMenuContentTypeFactory;
23 27
28 const extensions::Extension* GetExtension() const;
29
24 DISALLOW_COPY_AND_ASSIGN(ContextMenuContentTypePlatformApp); 30 DISALLOW_COPY_AND_ASSIGN(ContextMenuContentTypePlatformApp);
25 }; 31 };
26 32
27 #endif // CHROME_BROWSER_RENDERER_CONTEXT_MENU_CONTEXT_MENU_CONTENT_TYPE_PLATFO RM_APP_H_ 33 #endif // CHROME_BROWSER_RENDERER_CONTEXT_MENU_CONTEXT_MENU_CONTENT_TYPE_PLATFO RM_APP_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698