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

Unified Diff: athena/content/render_view_context_menu_impl.h

Issue 863033002: Delete athena/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: athena/content/render_view_context_menu_impl.h
diff --git a/athena/content/render_view_context_menu_impl.h b/athena/content/render_view_context_menu_impl.h
deleted file mode 100644
index 85a9bf1f5639624fa3c441fa286f6765a6addc56..0000000000000000000000000000000000000000
--- a/athena/content/render_view_context_menu_impl.h
+++ /dev/null
@@ -1,64 +0,0 @@
-// 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 ATHENA_CONTENT_RENDER_VIEW_CONTEXT_MENU_IMPL_H_
-#define ATHENA_CONTENT_RENDER_VIEW_CONTEXT_MENU_IMPL_H_
-
-#include "components/renderer_context_menu/render_view_context_menu_base.h"
-
-namespace aura {
-class Window;
-}
-
-namespace gfx {
-class Point;
-}
-
-namespace views {
-class Widget;
-}
-
-namespace athena {
-
-class RenderViewContextMenuImpl : public RenderViewContextMenuBase {
- public:
- RenderViewContextMenuImpl(content::RenderFrameHost* render_frame_host,
- const content::ContextMenuParams& params);
- ~RenderViewContextMenuImpl() override;
-
- void RunMenuAt(views::Widget* parent,
- const gfx::Point& point,
- ui::MenuSourceType type);
-
- // RenderViewContextMenuBase:
- void Show() override;
-
- private:
- // RenderViewContextMenuBase:
- void InitMenu() override;
- void RecordShownItem(int id) override;
- void RecordUsedItem(int id) override;
-#if defined(ENABLE_PLUGINS)
- void HandleAuthorizeAllPlugins() override;
-#endif
- void NotifyMenuShown() override;
- void NotifyURLOpened(const GURL& url,
- content::WebContents* new_contents) override;
-
- // ui::SimpleMenuModel:
- bool GetAcceleratorForCommandId(int command_id,
- ui::Accelerator* accelerator) override;
- bool IsCommandIdChecked(int command_id) const override;
- bool IsCommandIdEnabled(int command_id) const override;
- void ExecuteCommand(int command_id, int event_flags) override;
-
- aura::Window* GetActiveNativeView();
- views::Widget* GetTopLevelWidget();
-
- DISALLOW_COPY_AND_ASSIGN(RenderViewContextMenuImpl);
-};
-
-} // namespace athena
-
-#endif // ATHENA_CONTENT_RENDER_VIEW_CONTEXT_MENU_IMPL_H_
« no previous file with comments | « athena/content/public/web_contents_view_delegate_creator.h ('k') | athena/content/render_view_context_menu_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698