diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-12 23:57:41 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-12 23:57:41 +0000 |
commit | 4fb49a59cc66bbeac446b5c4e4f7500dfde695eb (patch) | |
tree | 5dbd720ab3405db837635b1021dfde1c184fe595 /chrome | |
parent | a791312ba883a1bce5ada393736dd2a519b7db42 (diff) | |
download | chromium_src-4fb49a59cc66bbeac446b5c4e4f7500dfde695eb.zip chromium_src-4fb49a59cc66bbeac446b5c4e4f7500dfde695eb.tar.gz chromium_src-4fb49a59cc66bbeac446b5c4e4f7500dfde695eb.tar.bz2 |
Move WebDragDestDelegate to content/public/browser.
BUG=98716
R=jam@chromium.org
Review URL: https://chromiumcodereview.appspot.com/9688006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@126270 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
4 files changed, 5 insertions, 6 deletions
diff --git a/chrome/browser/DEPS b/chrome/browser/DEPS index 3535ec7..38506f5 100644 --- a/chrome/browser/DEPS +++ b/chrome/browser/DEPS @@ -48,7 +48,6 @@ include_rules = [ "+content/browser/tab_contents/web_contents_drag_win.h", "+content/browser/tab_contents/web_contents_view_android.h", "+content/browser/tab_contents/web_contents_view_mac.h", - "+content/browser/tab_contents/web_drag_dest_delegate.h", "+content/browser/tab_contents/web_drag_dest_gtk.h", "+content/browser/tab_contents/web_drag_dest_win.h", "+content/browser/tab_contents/web_drag_source_gtk.h", diff --git a/chrome/browser/tab_contents/web_drag_bookmark_handler_gtk.h b/chrome/browser/tab_contents/web_drag_bookmark_handler_gtk.h index d68a16b..33c85e1 100644 --- a/chrome/browser/tab_contents/web_drag_bookmark_handler_gtk.h +++ b/chrome/browser/tab_contents/web_drag_bookmark_handler_gtk.h @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 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. @@ -8,7 +8,7 @@ #include "base/compiler_specific.h" #include "chrome/browser/bookmarks/bookmark_node_data.h" -#include "content/browser/tab_contents/web_drag_dest_delegate.h" +#include "content/public/browser/web_drag_dest_delegate.h" class TabContentsWrapper; diff --git a/chrome/browser/tab_contents/web_drag_bookmark_handler_mac.h b/chrome/browser/tab_contents/web_drag_bookmark_handler_mac.h index 05cb0c0..361b5fe 100644 --- a/chrome/browser/tab_contents/web_drag_bookmark_handler_mac.h +++ b/chrome/browser/tab_contents/web_drag_bookmark_handler_mac.h @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 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. @@ -8,7 +8,7 @@ #include "base/compiler_specific.h" #include "chrome/browser/bookmarks/bookmark_node_data.h" -#include "content/browser/tab_contents/web_drag_dest_delegate.h" +#include "content/public/browser/web_drag_dest_delegate.h" class TabContentsWrapper; diff --git a/chrome/browser/tab_contents/web_drag_bookmark_handler_win.h b/chrome/browser/tab_contents/web_drag_bookmark_handler_win.h index 865b4f6..89cd42c 100644 --- a/chrome/browser/tab_contents/web_drag_bookmark_handler_win.h +++ b/chrome/browser/tab_contents/web_drag_bookmark_handler_win.h @@ -8,7 +8,7 @@ #include "base/compiler_specific.h" #include "chrome/browser/bookmarks/bookmark_node_data.h" -#include "content/browser/tab_contents/web_drag_dest_delegate.h" +#include "content/public/browser/web_drag_dest_delegate.h" class TabContentsWrapper; |