| OLD | NEW | 
|---|
| 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 #include "chrome/browser/renderer_context_menu/render_view_context_menu.h" | 5 #include "chrome/browser/renderer_context_menu/render_view_context_menu.h" | 
| 6 | 6 | 
| 7 #include "base/memory/ptr_util.h" | 7 #include "base/memory/ptr_util.h" | 
| 8 #include "base/run_loop.h" | 8 #include "base/run_loop.h" | 
| 9 #include "base/strings/utf_string_conversions.h" | 9 #include "base/strings/utf_string_conversions.h" | 
| 10 #include "base/thread_task_runner_handle.h" | 10 #include "base/threading/thread_task_runner_handle.h" | 
| 11 #include "chrome/app/chrome_command_ids.h" | 11 #include "chrome/app/chrome_command_ids.h" | 
| 12 #include "chrome/browser/custom_handlers/protocol_handler_registry.h" | 12 #include "chrome/browser/custom_handlers/protocol_handler_registry.h" | 
| 13 #include "chrome/browser/extensions/menu_manager.h" | 13 #include "chrome/browser/extensions/menu_manager.h" | 
| 14 #include "chrome/browser/extensions/menu_manager_factory.h" | 14 #include "chrome/browser/extensions/menu_manager_factory.h" | 
| 15 #include "chrome/browser/extensions/test_extension_environment.h" | 15 #include "chrome/browser/extensions/test_extension_environment.h" | 
| 16 #include "chrome/browser/extensions/test_extension_prefs.h" | 16 #include "chrome/browser/extensions/test_extension_prefs.h" | 
| 17 #include "chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_settings.h" | 17 #include "chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_settings.h" | 
| 18 #include "chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_settings_fact
     ory.h" | 18 #include "chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_settings_fact
     ory.h" | 
| 19 #include "chrome/browser/prefs/incognito_mode_prefs.h" | 19 #include "chrome/browser/prefs/incognito_mode_prefs.h" | 
| 20 #include "chrome/browser/renderer_context_menu/render_view_context_menu_test_uti
     l.h" | 20 #include "chrome/browser/renderer_context_menu/render_view_context_menu_test_uti
     l.h" | 
| (...skipping 498 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 519   params.unfiltered_link_url = params.link_url; | 519   params.unfiltered_link_url = params.link_url; | 
| 520   content::WebContents* wc = web_contents(); | 520   content::WebContents* wc = web_contents(); | 
| 521   std::unique_ptr<TestRenderViewContextMenu> menu( | 521   std::unique_ptr<TestRenderViewContextMenu> menu( | 
| 522       new TestRenderViewContextMenu(wc->GetMainFrame(), params)); | 522       new TestRenderViewContextMenu(wc->GetMainFrame(), params)); | 
| 523   AppendImageItems(menu.get()); | 523   AppendImageItems(menu.get()); | 
| 524 | 524 | 
| 525   ASSERT_TRUE(menu->IsItemPresent(IDC_CONTENT_CONTEXT_LOAD_ORIGINAL_IMAGE)); | 525   ASSERT_TRUE(menu->IsItemPresent(IDC_CONTENT_CONTEXT_LOAD_ORIGINAL_IMAGE)); | 
| 526 | 526 | 
| 527   DestroyDataReductionProxySettings(); | 527   DestroyDataReductionProxySettings(); | 
| 528 } | 528 } | 
| OLD | NEW | 
|---|