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

Unified Diff: chrome/browser/renderer_context_menu/open_with_menu_factory.cc

Issue 1760773004: Add "Open with <ARC-app-name>" items to the context menu (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comments Created 4 years, 8 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: chrome/browser/renderer_context_menu/open_with_menu_factory.cc
diff --git a/chrome/browser/renderer_context_menu/open_with_menu_factory.cc b/chrome/browser/renderer_context_menu/open_with_menu_factory.cc
new file mode 100644
index 0000000000000000000000000000000000000000..426e45be34bdd6535942d2ce40af02a5ad24985d
--- /dev/null
+++ b/chrome/browser/renderer_context_menu/open_with_menu_factory.cc
@@ -0,0 +1,12 @@
+// Copyright 2016 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.
+
+#include "chrome/browser/renderer_context_menu/open_with_menu_factory.h"
+
+#if !defined(USE_ASH)
+RenderViewContextMenuObserver* OpenWithMenuFactory::CreateMenu(
+ RenderViewContextMenuProxy* proxy) {
+ return nullptr;
+}
+#endif // !defined(USE_ASH)

Powered by Google App Engine
This is Rietveld 408576698