| Index: content/browser/download/save_package.cc
|
| diff --git a/content/browser/download/save_package.cc b/content/browser/download/save_package.cc
|
| index b60c354a4b7229b960424a4dc2a2e83c4e238229..f98db115ac5585c4e379678c4520b8c6111850d1 100644
|
| --- a/content/browser/download/save_package.cc
|
| +++ b/content/browser/download/save_package.cc
|
| @@ -38,12 +38,12 @@
|
| #include "content/public/browser/notification_types.h"
|
| #include "content/public/browser/resource_context.h"
|
| #include "content/public/browser/web_contents.h"
|
| -#include "content/public/common/url_constants.h"
|
| #include "net/base/filename_util.h"
|
| #include "net/base/io_buffer.h"
|
| #include "net/base/mime_util.h"
|
| #include "net/url_request/url_request_context.h"
|
| #include "third_party/WebKit/public/web/WebPageSerializerClient.h"
|
| +#include "url/url_constants.h"
|
|
|
| using base::Time;
|
| using blink::WebPageSerializerClient;
|
| @@ -1222,7 +1222,7 @@ base::FilePath SavePackage::GetSuggestedNameForSaveAs(
|
| // similarly).
|
| if (title_ == net::FormatUrl(page_url_, accept_langs)) {
|
| std::string url_path;
|
| - if (!page_url_.SchemeIs(kDataScheme)) {
|
| + if (!page_url_.SchemeIs(url::kDataScheme)) {
|
| std::vector<std::string> url_parts;
|
| base::SplitString(page_url_.path(), '/', &url_parts);
|
| if (!url_parts.empty()) {
|
|
|