diff options
author | sdefresne <sdefresne@chromium.org> | 2015-04-17 14:12:18 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-04-17 21:14:10 +0000 |
commit | c083d1f4de8537ee81131ddb5d388f2f686fac85 (patch) | |
tree | 91b5c0d53aa666aa08586d0827d2be4c36d240e5 /chrome/browser/ui/bookmarks/bookmark_context_menu_controller.cc | |
parent | 298d7eb01ab6f9c1f8781a31c2fddc13f9e4e4e2 (diff) | |
download | chromium_src-c083d1f4de8537ee81131ddb5d388f2f686fac85.zip chromium_src-c083d1f4de8537ee81131ddb5d388f2f686fac85.tar.gz chromium_src-c083d1f4de8537ee81131ddb5d388f2f686fac85.tar.bz2 |
Move undo files into //components/undo
Create a new component //components/undo and move files from
//chrome/browser/undo into the component.
Add DEPS, OWNERS files and add dependencies on the new component into
chrome/browser/BUILD.gn & chrome/chrome_browser.gypi.
Files where moved using tools/git/move_source_files.py and the #include
lines updated automatically by the script.
BUG=476921
Review URL: https://codereview.chromium.org/1090993003
Cr-Commit-Position: refs/heads/master@{#325718}
Diffstat (limited to 'chrome/browser/ui/bookmarks/bookmark_context_menu_controller.cc')
-rw-r--r-- | chrome/browser/ui/bookmarks/bookmark_context_menu_controller.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/ui/bookmarks/bookmark_context_menu_controller.cc b/chrome/browser/ui/bookmarks/bookmark_context_menu_controller.cc index c3397f0..85d0a2b 100644 --- a/chrome/browser/ui/bookmarks/bookmark_context_menu_controller.cc +++ b/chrome/browser/ui/bookmarks/bookmark_context_menu_controller.cc @@ -18,7 +18,6 @@ #include "chrome/browser/ui/browser.h" #include "chrome/browser/ui/chrome_pages.h" #include "chrome/browser/ui/tabs/tab_strip_model.h" -#include "chrome/browser/undo/bookmark_undo_service.h" #include "chrome/browser/undo/bookmark_undo_service_factory.h" #include "chrome/common/chrome_switches.h" #include "chrome/common/pref_names.h" @@ -26,6 +25,7 @@ #include "components/bookmarks/browser/bookmark_client.h" #include "components/bookmarks/browser/bookmark_model.h" #include "components/bookmarks/browser/bookmark_utils.h" +#include "components/undo/bookmark_undo_service.h" #include "content/public/browser/page_navigator.h" #include "content/public/browser/user_metrics.h" #include "grit/components_strings.h" |