diff options
author | abarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-30 00:22:09 +0000 |
---|---|---|
committer | abarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-30 00:22:09 +0000 |
commit | c1088446ddc0571f98a2d40c1a8cfe86c715ffc1 (patch) | |
tree | 089aa4fe1e448cf03fb6aff1f4d58993cbbfbb19 /webkit/browser | |
parent | 99d618856b2fd530f88c2431aaa5588367d360f9 (diff) | |
download | chromium_src-c1088446ddc0571f98a2d40c1a8cfe86c715ffc1.zip chromium_src-c1088446ddc0571f98a2d40c1a8cfe86c715ffc1.tar.gz chromium_src-c1088446ddc0571f98a2d40c1a8cfe86c715ffc1.tar.bz2 |
Update refernces to Blink's Platform API (webkit)
These headers have moved from Source/Platform/chromium/public to
public/platform. This CL updates src/webkit's references to the old location to
point to the new location. After this CL lands, I'll remove the forwarding
headers that are letting these references still work.
TBR=jamesr@chromium.org
BUG=239545
Review URL: https://chromiumcodereview.appspot.com/15937016
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@203020 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/browser')
-rw-r--r-- | webkit/browser/chromeos/fileapi/cros_mount_point_provider.cc | 6 | ||||
-rw-r--r-- | webkit/browser/database/database_util.cc | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/webkit/browser/chromeos/fileapi/cros_mount_point_provider.cc b/webkit/browser/chromeos/fileapi/cros_mount_point_provider.cc index df2ebe3..ad46cb9 100644 --- a/webkit/browser/chromeos/fileapi/cros_mount_point_provider.cc +++ b/webkit/browser/chromeos/fileapi/cros_mount_point_provider.cc @@ -12,9 +12,9 @@ #include "base/synchronization/lock.h" #include "base/utf_string_conversions.h" #include "chromeos/dbus/cros_disks_client.h" -#include "third_party/WebKit/Source/Platform/chromium/public/WebCString.h" -#include "third_party/WebKit/Source/Platform/chromium/public/WebFileSystem.h" -#include "third_party/WebKit/Source/Platform/chromium/public/WebString.h" +#include "third_party/WebKit/public/platform/WebCString.h" +#include "third_party/WebKit/public/platform/WebFileSystem.h" +#include "third_party/WebKit/public/platform/WebString.h" #include "webkit/browser/chromeos/fileapi/file_access_permissions.h" #include "webkit/browser/chromeos/fileapi/remote_file_stream_writer.h" #include "webkit/browser/chromeos/fileapi/remote_file_system_operation.h" diff --git a/webkit/browser/database/database_util.cc b/webkit/browser/database/database_util.cc index 6c98d4e..b2b1cde 100644 --- a/webkit/browser/database/database_util.cc +++ b/webkit/browser/database/database_util.cc @@ -6,7 +6,7 @@ #include "base/basictypes.h" #include "base/utf_string_conversions.h" -#include "third_party/WebKit/Source/Platform/chromium/public/WebString.h" +#include "third_party/WebKit/public/platform/WebString.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebSecurityOrigin.h" #include "webkit/browser/database/database_tracker.h" #include "webkit/browser/database/vfs_backend.h" |