| Index: chrome/browser/tab_contents/menu_context/menu_context_platform_app.h
|
| diff --git a/chrome/browser/tab_contents/menu_context/menu_context_platform_app.h b/chrome/browser/tab_contents/menu_context/menu_context_platform_app.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..00fe0247916076dfa492772c7fb3d1283555f74e
|
| --- /dev/null
|
| +++ b/chrome/browser/tab_contents/menu_context/menu_context_platform_app.h
|
| @@ -0,0 +1,27 @@
|
| +// Copyright 2014 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#ifndef CHROME_BROWSER_TAB_CONTENTS_MENU_CONTEXT_MENU_CONTEXT_PLATFORM_APP_H_
|
| +#define CHROME_BROWSER_TAB_CONTENTS_MENU_CONTEXT_MENU_CONTEXT_PLATFORM_APP_H_
|
| +
|
| +#include "chrome/browser/tab_contents/menu_context/menu_context.h"
|
| +
|
| +class MenuContextPlatformApp : public MenuContext {
|
| + public:
|
| + virtual ~MenuContextPlatformApp();
|
| +
|
| + // MenuContext overrides.
|
| + virtual bool SupportsGroup(int group) OVERRIDE;
|
| +
|
| + protected:
|
| + MenuContextPlatformApp(content::RenderFrameHost* render_frame_host,
|
| + const content::ContextMenuParams& params);
|
| +
|
| + private:
|
| + friend class MenuContextFactory;
|
| +
|
| + DISALLOW_COPY_AND_ASSIGN(MenuContextPlatformApp);
|
| +};
|
| +
|
| +#endif // CHROME_BROWSER_TAB_CONTENTS_MENU_CONTEXT_MENU_CONTEXT_PLATFORM_APP_H_
|
|
|