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

Side by Side Diff: chrome/browser/history/DEPS

Issue 10978016: Remove two functions on WebContentsDelegate which didn't belong in content. They were only called f… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: don't log history for prerender on android Created 8 years, 2 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 | Annotate | Revision Log
OLDNEW
1 include_rules = [ 1 include_rules = [
2 # History is being made into a Browser Component, so we have these 2 # History is being made into a Browser Component, so we have these
3 # three basic rules followed by temporary exceptions. Please don't 3 # three basic rules followed by temporary exceptions. Please don't
4 # add to the list of exceptions! 4 # add to the list of exceptions!
5 "-chrome/browser", 5 "-chrome/browser",
6 "+chrome/browser/api", 6 "+chrome/browser/api",
7 "+chrome/browser/common", 7 "+chrome/browser/common",
8 "+chrome/browser/history", 8 "+chrome/browser/history",
9 9
10 # TODO(erikwright): Bring this list to zero. 10 # TODO(erikwright): Bring this list to zero.
(...skipping 11 matching lines...) Expand all
22 "!chrome/browser/bookmarks/bookmark_model.h", 22 "!chrome/browser/bookmarks/bookmark_model.h",
23 "!chrome/browser/bookmarks/bookmark_model_factory.h", 23 "!chrome/browser/bookmarks/bookmark_model_factory.h",
24 "!chrome/browser/browser_process.h", 24 "!chrome/browser/browser_process.h",
25 "!chrome/browser/chromeos/login/existing_user_controller.h", 25 "!chrome/browser/chromeos/login/existing_user_controller.h",
26 "!chrome/browser/diagnostics/sqlite_diagnostics.h", 26 "!chrome/browser/diagnostics/sqlite_diagnostics.h",
27 "!chrome/browser/extensions/event_router.h", 27 "!chrome/browser/extensions/event_router.h",
28 "!chrome/browser/extensions/extension_function.h", 28 "!chrome/browser/extensions/extension_function.h",
29 "!chrome/browser/favicon/favicon_service.h", 29 "!chrome/browser/favicon/favicon_service.h",
30 "!chrome/browser/prefs/pref_service.h", 30 "!chrome/browser/prefs/pref_service.h",
31 "!chrome/browser/prefs/scoped_user_pref_update.h", 31 "!chrome/browser/prefs/scoped_user_pref_update.h",
32 "!chrome/browser/prerender/prerender_manager.h",
33 "!chrome/browser/prerender/prerender_manager_factory.h",
32 "!chrome/browser/profiles/profile.h", 34 "!chrome/browser/profiles/profile.h",
33 "!chrome/browser/profiles/profile_dependency_manager.h", 35 "!chrome/browser/profiles/profile_dependency_manager.h",
34 "!chrome/browser/profiles/profile_manager.h", 36 "!chrome/browser/profiles/profile_manager.h",
35 "!chrome/browser/profiles/refcounted_profile_keyed_service.h", 37 "!chrome/browser/profiles/refcounted_profile_keyed_service.h",
36 "!chrome/browser/profiles/refcounted_profile_keyed_service_factory.h", 38 "!chrome/browser/profiles/refcounted_profile_keyed_service_factory.h",
39 "!chrome/browser/ui/browser.h",
40 "!chrome/browser/ui/browser_finder.h",
37 "!chrome/browser/ui/profile_error_dialog.h", 41 "!chrome/browser/ui/profile_error_dialog.h",
38 "!chrome/browser/ui/webui/ntp/most_visited_handler.h", 42 "!chrome/browser/ui/webui/ntp/most_visited_handler.h",
39 "!chrome/browser/ui/webui/ntp/new_tab_ui.h", 43 "!chrome/browser/ui/webui/ntp/new_tab_ui.h",
40 "!chrome/browser/visitedlink/visitedlink_master.h", 44 "!chrome/browser/visitedlink/visitedlink_master.h",
41 ] 45 ]
42 46
43 specific_include_rules = { 47 specific_include_rules = {
44 # Browser tests, by definition, need access to the browser objects. 48 # Browser tests, by definition, need access to the browser objects.
45 '.*_(api|browser|extension_)test\.cc': [ 49 '.*_(api|browser|extension_)test\.cc': [
46 "+chrome/browser", 50 "+chrome/browser",
47 ], 51 ],
48 # TODO(erikwright): Bring this list to zero. 52 # TODO(erikwright): Bring this list to zero.
49 # 53 #
50 # Do not add to the list of temporarily-allowed dependencies below, 54 # Do not add to the list of temporarily-allowed dependencies below,
51 # and please do not introduce more #includes of these files. 55 # and please do not introduce more #includes of these files.
52 '.*_[a-z]*test\.cc': [ 56 '.*_[a-z]*test\.cc': [
53 "!chrome/browser/bookmarks/bookmark_utils.h", 57 "!chrome/browser/bookmarks/bookmark_utils.h",
54 ] 58 ]
55 } 59 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698