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

Side by Side Diff: chrome/browser/tab_contents/render_view_context_menu.cc

Issue 3203008: Move prefs-related files under chrome/browser/ into a prefs/ subdir. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Created 10 years, 3 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 (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 <algorithm> 5 #include <algorithm>
6 #include <set> 6 #include <set>
7 7
8 #include "chrome/browser/tab_contents/render_view_context_menu.h" 8 #include "chrome/browser/tab_contents/render_view_context_menu.h"
9 9
10 #include "app/l10n_util.h" 10 #include "app/l10n_util.h"
(...skipping 10 matching lines...) Expand all
21 #include "chrome/browser/child_process_security_policy.h" 21 #include "chrome/browser/child_process_security_policy.h"
22 #include "chrome/browser/debugger/devtools_manager.h" 22 #include "chrome/browser/debugger/devtools_manager.h"
23 #include "chrome/browser/debugger/devtools_window.h" 23 #include "chrome/browser/debugger/devtools_window.h"
24 #include "chrome/browser/download/download_manager.h" 24 #include "chrome/browser/download/download_manager.h"
25 #include "chrome/browser/extensions/extensions_service.h" 25 #include "chrome/browser/extensions/extensions_service.h"
26 #include "chrome/browser/fonts_languages_window.h" 26 #include "chrome/browser/fonts_languages_window.h"
27 #include "chrome/browser/metrics/user_metrics.h" 27 #include "chrome/browser/metrics/user_metrics.h"
28 #include "chrome/browser/net/browser_url_util.h" 28 #include "chrome/browser/net/browser_url_util.h"
29 #include "chrome/browser/page_info_window.h" 29 #include "chrome/browser/page_info_window.h"
30 #include "chrome/browser/platform_util.h" 30 #include "chrome/browser/platform_util.h"
31 #include "chrome/browser/pref_service.h" 31 #include "chrome/browser/prefs/pref_service.h"
32 #include "chrome/browser/profile.h" 32 #include "chrome/browser/profile.h"
33 #include "chrome/browser/renderer_host/render_view_host.h" 33 #include "chrome/browser/renderer_host/render_view_host.h"
34 #include "chrome/browser/search_engines/template_url_model.h" 34 #include "chrome/browser/search_engines/template_url_model.h"
35 #include "chrome/browser/spellcheck_host.h" 35 #include "chrome/browser/spellcheck_host.h"
36 #include "chrome/browser/spellchecker_platform_engine.h" 36 #include "chrome/browser/spellchecker_platform_engine.h"
37 #include "chrome/browser/tab_contents/navigation_entry.h" 37 #include "chrome/browser/tab_contents/navigation_entry.h"
38 #include "chrome/browser/tab_contents/tab_contents.h" 38 #include "chrome/browser/tab_contents/tab_contents.h"
39 #include "chrome/browser/translate/translate_prefs.h" 39 #include "chrome/browser/translate/translate_prefs.h"
40 #include "chrome/browser/translate/translate_manager.h" 40 #include "chrome/browser/translate/translate_manager.h"
41 #include "chrome/common/chrome_constants.h" 41 #include "chrome/common/chrome_constants.h"
(...skipping 1413 matching lines...) Expand 10 before | Expand all | Expand 10 after
1455 UTF8ToWide(profile_->GetPrefs()->GetString(prefs::kAcceptLanguages)), 1455 UTF8ToWide(profile_->GetPrefs()->GetString(prefs::kAcceptLanguages)),
1456 g_browser_process->clipboard()); 1456 g_browser_process->clipboard());
1457 } 1457 }
1458 1458
1459 void RenderViewContextMenu::MediaPlayerActionAt( 1459 void RenderViewContextMenu::MediaPlayerActionAt(
1460 const gfx::Point& location, 1460 const gfx::Point& location,
1461 const WebMediaPlayerAction& action) { 1461 const WebMediaPlayerAction& action) {
1462 source_tab_contents_->render_view_host()->MediaPlayerActionAt( 1462 source_tab_contents_->render_view_host()->MediaPlayerActionAt(
1463 location, action); 1463 location, action);
1464 } 1464 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698