diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-02 15:25:15 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-02 15:25:15 +0000 |
commit | 761fa4704b79bb85722cef092c6a8c7f0ff55287 (patch) | |
tree | fee30920cad1d7c0828f602e6d311900ad323abd | |
parent | 896ff9b6181832710c42efe84bcd1959611fb3a5 (diff) | |
download | chromium_src-761fa4704b79bb85722cef092c6a8c7f0ff55287.zip chromium_src-761fa4704b79bb85722cef092c6a8c7f0ff55287.tar.gz chromium_src-761fa4704b79bb85722cef092c6a8c7f0ff55287.tar.bz2 |
chrome/browser: Migrate from googleurl/ includes to url/ ones. Part 1
BUG=229660
TBR=darin@chromium.org
Review URL: https://chromiumcodereview.appspot.com/18054023
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@209705 0039d316-1c4b-4281-b951-d872f2087c98
317 files changed, 335 insertions, 335 deletions
diff --git a/chrome/browser/autocomplete/autocomplete_classifier.cc b/chrome/browser/autocomplete/autocomplete_classifier.cc index 8a7f174..4eff86a 100644 --- a/chrome/browser/autocomplete/autocomplete_classifier.cc +++ b/chrome/browser/autocomplete/autocomplete_classifier.cc @@ -9,7 +9,7 @@ #include "chrome/browser/autocomplete/autocomplete_input.h" #include "chrome/browser/autocomplete/autocomplete_match.h" #include "chrome/browser/autocomplete/autocomplete_provider.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" // static const int AutocompleteClassifier::kDefaultOmniboxProviders = diff --git a/chrome/browser/autocomplete/autocomplete_input.cc b/chrome/browser/autocomplete/autocomplete_input.cc index cf2af6a..349e611 100644 --- a/chrome/browser/autocomplete/autocomplete_input.cc +++ b/chrome/browser/autocomplete/autocomplete_input.cc @@ -10,9 +10,9 @@ #include "chrome/browser/net/url_fixer_upper.h" #include "chrome/browser/profiles/profile_io_data.h" #include "content/public/common/url_constants.h" -#include "googleurl/src/url_canon_ip.h" #include "net/base/net_util.h" #include "net/base/registry_controlled_domains/registry_controlled_domain.h" +#include "url/url_canon_ip.h" namespace { diff --git a/chrome/browser/autocomplete/autocomplete_input.h b/chrome/browser/autocomplete/autocomplete_input.h index 839d73f..d70a3af 100644 --- a/chrome/browser/autocomplete/autocomplete_input.h +++ b/chrome/browser/autocomplete/autocomplete_input.h @@ -9,8 +9,8 @@ #include "base/basictypes.h" #include "base/strings/string16.h" -#include "googleurl/src/gurl.h" -#include "googleurl/src/url_parse.h" +#include "url/gurl.h" +#include "url/url_parse.h" // The user input for an autocomplete query. Allows copying. class AutocompleteInput { diff --git a/chrome/browser/autocomplete/autocomplete_input_unittest.cc b/chrome/browser/autocomplete/autocomplete_input_unittest.cc index 1cdcc02..db7a1dd 100644 --- a/chrome/browser/autocomplete/autocomplete_input_unittest.cc +++ b/chrome/browser/autocomplete/autocomplete_input_unittest.cc @@ -8,8 +8,8 @@ #include "base/strings/string16.h" #include "base/strings/utf_string_conversions.h" #include "build/build_config.h" -#include "googleurl/src/url_parse.h" #include "testing/gtest/include/gtest/gtest.h" +#include "url/url_parse.h" TEST(AutocompleteInputTest, InputType) { struct test_data { diff --git a/chrome/browser/autocomplete/autocomplete_match.h b/chrome/browser/autocomplete/autocomplete_match.h index b7d514e..4d4ca47 100644 --- a/chrome/browser/autocomplete/autocomplete_match.h +++ b/chrome/browser/autocomplete/autocomplete_match.h @@ -13,7 +13,7 @@ #include "chrome/browser/search_engines/template_url.h" #include "chrome/common/autocomplete_match_type.h" #include "content/public/common/page_transition_types.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" class AutocompleteProvider; class Profile; diff --git a/chrome/browser/autocomplete/autocomplete_provider.cc b/chrome/browser/autocomplete/autocomplete_provider.cc index d71e075..873bbac 100644 --- a/chrome/browser/autocomplete/autocomplete_provider.cc +++ b/chrome/browser/autocomplete/autocomplete_provider.cc @@ -14,9 +14,9 @@ #include "chrome/browser/profiles/profile.h" #include "chrome/common/pref_names.h" #include "content/public/common/url_constants.h" -#include "googleurl/src/gurl.h" -#include "googleurl/src/url_util.h" #include "net/base/net_util.h" +#include "url/gurl.h" +#include "url/url_util.h" // static const size_t AutocompleteProvider::kMaxMatches = 3; diff --git a/chrome/browser/autocomplete/autocomplete_result.h b/chrome/browser/autocomplete/autocomplete_result.h index 8cc667c..57660f4 100644 --- a/chrome/browser/autocomplete/autocomplete_result.h +++ b/chrome/browser/autocomplete/autocomplete_result.h @@ -11,7 +11,7 @@ #include "base/basictypes.h" #include "chrome/browser/autocomplete/autocomplete_match.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" class AutocompleteInput; class AutocompleteProvider; diff --git a/chrome/browser/autocomplete/builtin_provider_unittest.cc b/chrome/browser/autocomplete/builtin_provider_unittest.cc index df80f56..bc524b5 100644 --- a/chrome/browser/autocomplete/builtin_provider_unittest.cc +++ b/chrome/browser/autocomplete/builtin_provider_unittest.cc @@ -11,8 +11,8 @@ #include "chrome/browser/autocomplete/autocomplete_provider.h" #include "chrome/common/url_constants.h" #include "chrome/test/base/testing_browser_process.h" -#include "googleurl/src/gurl.h" #include "testing/gtest/include/gtest/gtest.h" +#include "url/gurl.h" class BuiltinProviderTest : public testing::Test { protected: diff --git a/chrome/browser/autocomplete/history_provider.cc b/chrome/browser/autocomplete/history_provider.cc index 6aa2fb1..d09b794 100644 --- a/chrome/browser/autocomplete/history_provider.cc +++ b/chrome/browser/autocomplete/history_provider.cc @@ -16,7 +16,7 @@ #include "chrome/browser/net/url_fixer_upper.h" #include "chrome/browser/profiles/profile.h" #include "chrome/common/url_constants.h" -#include "googleurl/src/url_util.h" +#include "url/url_util.h" HistoryProvider::HistoryProvider(AutocompleteProviderListener* listener, Profile* profile, diff --git a/chrome/browser/autocomplete/history_quick_provider.cc b/chrome/browser/autocomplete/history_quick_provider.cc index dee9b48..1a5eb671 100644 --- a/chrome/browser/autocomplete/history_quick_provider.cc +++ b/chrome/browser/autocomplete/history_quick_provider.cc @@ -39,11 +39,11 @@ #include "content/public/browser/browser_thread.h" #include "content/public/browser/notification_source.h" #include "content/public/browser/notification_types.h" -#include "googleurl/src/url_parse.h" -#include "googleurl/src/url_util.h" #include "net/base/escape.h" #include "net/base/net_util.h" #include "net/base/registry_controlled_domains/registry_controlled_domain.h" +#include "url/url_parse.h" +#include "url/url_util.h" using history::InMemoryURLIndex; using history::ScoredHistoryMatch; diff --git a/chrome/browser/autocomplete/history_url_provider.cc b/chrome/browser/autocomplete/history_url_provider.cc index fa9066fb..e831193 100644 --- a/chrome/browser/autocomplete/history_url_provider.cc +++ b/chrome/browser/autocomplete/history_url_provider.cc @@ -29,11 +29,11 @@ #include "chrome/common/chrome_switches.h" #include "chrome/common/pref_names.h" #include "chrome/common/url_constants.h" -#include "googleurl/src/gurl.h" -#include "googleurl/src/url_parse.h" -#include "googleurl/src/url_util.h" #include "net/base/net_util.h" #include "net/base/registry_controlled_domains/registry_controlled_domain.h" +#include "url/gurl.h" +#include "url/url_parse.h" +#include "url/url_util.h" namespace { diff --git a/chrome/browser/autocomplete/keyword_provider_unittest.cc b/chrome/browser/autocomplete/keyword_provider_unittest.cc index 6a30d59..b5f4e4c 100644 --- a/chrome/browser/autocomplete/keyword_provider_unittest.cc +++ b/chrome/browser/autocomplete/keyword_provider_unittest.cc @@ -9,8 +9,8 @@ #include "chrome/browser/search_engines/template_url.h" #include "chrome/browser/search_engines/template_url_service.h" #include "chrome/test/base/testing_browser_process.h" -#include "googleurl/src/gurl.h" #include "testing/gtest/include/gtest/gtest.h" +#include "url/gurl.h" class KeywordProviderTest : public testing::Test { protected: diff --git a/chrome/browser/autocomplete/search_provider.cc b/chrome/browser/autocomplete/search_provider.cc index baf620c..474542c 100644 --- a/chrome/browser/autocomplete/search_provider.cc +++ b/chrome/browser/autocomplete/search_provider.cc @@ -39,7 +39,6 @@ #include "chrome/browser/search_engines/template_url_service_factory.h" #include "chrome/common/pref_names.h" #include "chrome/common/url_constants.h" -#include "googleurl/src/url_util.h" #include "grit/generated_resources.h" #include "net/base/escape.h" #include "net/base/load_flags.h" @@ -49,6 +48,7 @@ #include "net/url_request/url_fetcher.h" #include "net/url_request/url_request_status.h" #include "ui/base/l10n/l10n_util.h" +#include "url/url_util.h" // Helpers -------------------------------------------------------------------- diff --git a/chrome/browser/autocomplete/shortcuts_provider.cc b/chrome/browser/autocomplete/shortcuts_provider.cc index 597957b..cf121be 100644 --- a/chrome/browser/autocomplete/shortcuts_provider.cc +++ b/chrome/browser/autocomplete/shortcuts_provider.cc @@ -29,7 +29,7 @@ #include "chrome/browser/profiles/profile.h" #include "chrome/common/pref_names.h" #include "chrome/common/url_constants.h" -#include "googleurl/src/url_parse.h" +#include "url/url_parse.h" namespace { diff --git a/chrome/browser/autocomplete/zero_suggest_provider.cc b/chrome/browser/autocomplete/zero_suggest_provider.cc index 9cc8d81..6e585a8 100644 --- a/chrome/browser/autocomplete/zero_suggest_provider.cc +++ b/chrome/browser/autocomplete/zero_suggest_provider.cc @@ -30,7 +30,6 @@ #include "chrome/browser/sync/profile_sync_service_factory.h" #include "chrome/common/pref_names.h" #include "chrome/common/url_constants.h" -#include "googleurl/src/gurl.h" #include "net/base/escape.h" #include "net/base/load_flags.h" #include "net/base/net_util.h" @@ -38,6 +37,7 @@ #include "net/http/http_response_headers.h" #include "net/url_request/url_fetcher.h" #include "net/url_request/url_request_status.h" +#include "url/gurl.h" namespace { diff --git a/chrome/browser/autofill/form_structure_browsertest.cc b/chrome/browser/autofill/form_structure_browsertest.cc index b354925..e6babac 100644 --- a/chrome/browser/autofill/form_structure_browsertest.cc +++ b/chrome/browser/autofill/form_structure_browsertest.cc @@ -15,7 +15,7 @@ #include "components/autofill/core/browser/autofill_manager.h" #include "components/autofill/core/browser/data_driven_test.h" #include "components/autofill/core/browser/form_structure.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" namespace autofill { namespace { diff --git a/chrome/browser/automation/automation_provider_observers.cc b/chrome/browser/automation/automation_provider_observers.cc index 7a7823d..bd66049 100644 --- a/chrome/browser/automation/automation_provider_observers.cc +++ b/chrome/browser/automation/automation_provider_observers.cc @@ -79,9 +79,9 @@ #include "content/public/browser/web_contents.h" #include "content/public/common/process_type.h" #include "extensions/common/view_type.h" -#include "googleurl/src/gurl.h" #include "ui/gfx/codec/png_codec.h" #include "ui/gfx/rect.h" +#include "url/gurl.h" using content::BrowserThread; using content::DomOperationNotificationDetails; diff --git a/chrome/browser/automation/automation_resource_message_filter.cc b/chrome/browser/automation/automation_resource_message_filter.cc index fafded1..05ccab5 100644 --- a/chrome/browser/automation/automation_resource_message_filter.cc +++ b/chrome/browser/automation/automation_resource_message_filter.cc @@ -16,10 +16,10 @@ #include "chrome/common/render_messages.h" #include "content/public/browser/browser_message_filter.h" #include "content/public/browser/browser_thread.h" -#include "googleurl/src/gurl.h" #include "net/base/net_errors.h" #include "net/url_request/url_request_context.h" #include "net/url_request/url_request_filter.h" +#include "url/gurl.h" using content::BrowserMessageFilter; using content::BrowserThread; diff --git a/chrome/browser/background/background_contents_service.h b/chrome/browser/background/background_contents_service.h index 3cddb7d..50057cf 100644 --- a/chrome/browser/background/background_contents_service.h +++ b/chrome/browser/background/background_contents_service.h @@ -16,8 +16,8 @@ #include "content/public/browser/notification_observer.h" #include "content/public/browser/notification_registrar.h" #include "content/public/common/window_container_type.h" -#include "googleurl/src/gurl.h" #include "ui/base/window_open_disposition.h" +#include "url/gurl.h" class CommandLine; class PrefService; diff --git a/chrome/browser/background/background_contents_service_unittest.cc b/chrome/browser/background/background_contents_service_unittest.cc index 8d7d40a..6d3bb26 100644 --- a/chrome/browser/background/background_contents_service_unittest.cc +++ b/chrome/browser/background/background_contents_service_unittest.cc @@ -19,9 +19,9 @@ #include "chrome/test/base/testing_browser_process.h" #include "chrome/test/base/testing_profile.h" #include "content/public/browser/notification_service.h" -#include "googleurl/src/gurl.h" #include "testing/gtest/include/gtest/gtest.h" #include "testing/platform_test.h" +#include "url/gurl.h" class BackgroundContentsServiceTest : public testing::Test { public: diff --git a/chrome/browser/bookmarks/bookmark_codec.cc b/chrome/browser/bookmarks/bookmark_codec.cc index c4d0c30..54116bf 100644 --- a/chrome/browser/bookmarks/bookmark_codec.cc +++ b/chrome/browser/bookmarks/bookmark_codec.cc @@ -10,9 +10,9 @@ #include "base/strings/string_util.h" #include "base/values.h" #include "chrome/browser/bookmarks/bookmark_model.h" -#include "googleurl/src/gurl.h" #include "grit/generated_resources.h" #include "ui/base/l10n/l10n_util.h" +#include "url/gurl.h" using base::Time; diff --git a/chrome/browser/bookmarks/bookmark_html_reader.cc b/chrome/browser/bookmarks/bookmark_html_reader.cc index cdaadb8..38773dc 100644 --- a/chrome/browser/bookmarks/bookmark_html_reader.cc +++ b/chrome/browser/bookmarks/bookmark_html_reader.cc @@ -15,9 +15,9 @@ #include "chrome/browser/favicon/favicon_util.h" #include "chrome/browser/favicon/imported_favicon_usage.h" #include "content/public/common/url_constants.h" -#include "googleurl/src/gurl.h" #include "net/base/data_url.h" #include "net/base/escape.h" +#include "url/gurl.h" namespace { diff --git a/chrome/browser/bookmarks/bookmark_model.h b/chrome/browser/bookmarks/bookmark_model.h index cfa1475..cc90532 100644 --- a/chrome/browser/bookmarks/bookmark_model.h +++ b/chrome/browser/bookmarks/bookmark_model.h @@ -21,9 +21,9 @@ #include "components/browser_context_keyed_service/browser_context_keyed_service.h" #include "content/public/browser/notification_observer.h" #include "content/public/browser/notification_registrar.h" -#include "googleurl/src/gurl.h" #include "ui/base/models/tree_node_model.h" #include "ui/gfx/image/image.h" +#include "url/gurl.h" class BookmarkExpandedStateTracker; class BookmarkIndex; diff --git a/chrome/browser/bookmarks/bookmark_model_test_utils.cc b/chrome/browser/bookmarks/bookmark_model_test_utils.cc index 3ca9cda..f04a6b5 100644 --- a/chrome/browser/bookmarks/bookmark_model_test_utils.cc +++ b/chrome/browser/bookmarks/bookmark_model_test_utils.cc @@ -6,8 +6,8 @@ #include "base/strings/utf_string_conversions.h" #include "chrome/browser/bookmarks/bookmark_model.h" -#include "googleurl/src/gurl.h" #include "testing/gtest/include/gtest/gtest.h" +#include "url/gurl.h" namespace { diff --git a/chrome/browser/bookmarks/bookmark_model_unittest.cc b/chrome/browser/bookmarks/bookmark_model_unittest.cc index 1cd8ee4..06610d7 100644 --- a/chrome/browser/bookmarks/bookmark_model_unittest.cc +++ b/chrome/browser/bookmarks/bookmark_model_unittest.cc @@ -26,10 +26,10 @@ #include "chrome/test/base/testing_profile.h" #include "chrome/test/base/ui_test_utils.h" #include "content/public/test/test_browser_thread_bundle.h" -#include "googleurl/src/gurl.h" #include "testing/gtest/include/gtest/gtest.h" #include "ui/base/models/tree_node_iterator.h" #include "ui/base/models/tree_node_model.h" +#include "url/gurl.h" using base::Time; using base::TimeDelta; diff --git a/chrome/browser/bookmarks/bookmark_node_data.h b/chrome/browser/bookmarks/bookmark_node_data.h index 80e55f6..1401e70 100644 --- a/chrome/browser/bookmarks/bookmark_node_data.h +++ b/chrome/browser/bookmarks/bookmark_node_data.h @@ -9,7 +9,7 @@ #include "base/files/file_path.h" #include "base/strings/string16.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" #if defined(TOOLKIT_VIEWS) #include "ui/base/dragdrop/os_exchange_data.h" diff --git a/chrome/browser/bookmarks/bookmark_node_data_unittest.cc b/chrome/browser/bookmarks/bookmark_node_data_unittest.cc index d919b65..8e5c0e2 100644 --- a/chrome/browser/bookmarks/bookmark_node_data_unittest.cc +++ b/chrome/browser/bookmarks/bookmark_node_data_unittest.cc @@ -12,10 +12,10 @@ #include "chrome/test/base/testing_profile.h" #include "chrome/test/base/ui_test_utils.h" #include "content/public/test/test_browser_thread_bundle.h" -#include "googleurl/src/gurl.h" #include "testing/gtest/include/gtest/gtest.h" #include "ui/base/dragdrop/os_exchange_data.h" #include "ui/base/dragdrop/os_exchange_data_provider_win.h" +#include "url/gurl.h" class BookmarkNodeDataTest : public testing::Test { public: diff --git a/chrome/browser/bookmarks/bookmark_service.h b/chrome/browser/bookmarks/bookmark_service.h index 284fe4c..8233565 100644 --- a/chrome/browser/bookmarks/bookmark_service.h +++ b/chrome/browser/bookmarks/bookmark_service.h @@ -8,7 +8,7 @@ #include <vector> #include "base/strings/string16.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" namespace content { class BrowserContext; diff --git a/chrome/browser/bookmarks/imported_bookmark_entry.h b/chrome/browser/bookmarks/imported_bookmark_entry.h index cd2fda3..73a3c03 100644 --- a/chrome/browser/bookmarks/imported_bookmark_entry.h +++ b/chrome/browser/bookmarks/imported_bookmark_entry.h @@ -9,7 +9,7 @@ #include "base/strings/string16.h" #include "base/time/time.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" struct ImportedBookmarkEntry { ImportedBookmarkEntry(); diff --git a/chrome/browser/browser_about_handler_unittest.cc b/chrome/browser/browser_about_handler_unittest.cc index c21f2e4..0b6e9c4 100644 --- a/chrome/browser/browser_about_handler_unittest.cc +++ b/chrome/browser/browser_about_handler_unittest.cc @@ -9,8 +9,8 @@ #include "chrome/common/url_constants.h" #include "chrome/test/base/testing_profile.h" #include "content/public/test/test_browser_thread.h" -#include "googleurl/src/gurl.h" #include "testing/gtest/include/gtest/gtest.h" +#include "url/gurl.h" using content::BrowserThread; diff --git a/chrome/browser/browsing_data/browsing_data_appcache_helper.h b/chrome/browser/browsing_data/browsing_data_appcache_helper.h index 46ea34e..6f3ac7a 100644 --- a/chrome/browser/browsing_data/browsing_data_appcache_helper.h +++ b/chrome/browser/browsing_data/browsing_data_appcache_helper.h @@ -7,8 +7,8 @@ #include "base/callback.h" #include "base/memory/ref_counted.h" -#include "googleurl/src/gurl.h" #include "net/base/completion_callback.h" +#include "url/gurl.h" #include "webkit/browser/appcache/appcache_service.h" class Profile; diff --git a/chrome/browser/browsing_data/browsing_data_cookie_helper.cc b/chrome/browser/browsing_data/browsing_data_cookie_helper.cc index f5819af..5551642 100644 --- a/chrome/browser/browsing_data/browsing_data_cookie_helper.cc +++ b/chrome/browser/browsing_data/browsing_data_cookie_helper.cc @@ -12,13 +12,13 @@ #include "base/stl_util.h" #include "chrome/browser/profiles/profile.h" #include "content/public/browser/browser_thread.h" -#include "googleurl/src/gurl.h" #include "net/base/registry_controlled_domains/registry_controlled_domain.h" #include "net/cookies/canonical_cookie.h" #include "net/cookies/cookie_util.h" #include "net/cookies/parsed_cookie.h" #include "net/url_request/url_request_context.h" #include "net/url_request/url_request_context_getter.h" +#include "url/gurl.h" using content::BrowserThread; diff --git a/chrome/browser/browsing_data/browsing_data_database_helper.h b/chrome/browser/browsing_data/browsing_data_database_helper.h index eb29d94..963f178 100644 --- a/chrome/browser/browsing_data/browsing_data_database_helper.h +++ b/chrome/browser/browsing_data/browsing_data_database_helper.h @@ -14,7 +14,7 @@ #include "base/memory/ref_counted.h" #include "base/synchronization/lock.h" #include "chrome/common/url_constants.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" #include "webkit/browser/database/database_tracker.h" #include "webkit/common/database/database_identifier.h" diff --git a/chrome/browser/browsing_data/browsing_data_file_system_helper.h b/chrome/browser/browsing_data/browsing_data_file_system_helper.h index 1bb6f73..d0c1b6f 100644 --- a/chrome/browser/browsing_data/browsing_data_file_system_helper.h +++ b/chrome/browser/browsing_data/browsing_data_file_system_helper.h @@ -15,7 +15,7 @@ #include "base/memory/ref_counted.h" #include "base/synchronization/lock.h" #include "chrome/common/url_constants.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" #include "webkit/common/fileapi/file_system_types.h" namespace fileapi { diff --git a/chrome/browser/browsing_data/browsing_data_helper.cc b/chrome/browser/browsing_data/browsing_data_helper.cc index 5a50ff0..0faf856 100644 --- a/chrome/browser/browsing_data/browsing_data_helper.cc +++ b/chrome/browser/browsing_data/browsing_data_helper.cc @@ -11,8 +11,8 @@ #include "chrome/common/url_constants.h" #include "content/public/browser/child_process_security_policy.h" #include "extensions/common/constants.h" -#include "googleurl/src/gurl.h" #include "third_party/WebKit/public/platform/WebString.h" +#include "url/gurl.h" // Static bool BrowsingDataHelper::IsWebScheme(const std::string& scheme) { diff --git a/chrome/browser/browsing_data/browsing_data_helper_unittest.cc b/chrome/browser/browsing_data/browsing_data_helper_unittest.cc index fe3b476..e19b81a 100644 --- a/chrome/browser/browsing_data/browsing_data_helper_unittest.cc +++ b/chrome/browser/browsing_data/browsing_data_helper_unittest.cc @@ -9,9 +9,9 @@ #include "chrome/common/url_constants.h" #include "content/public/common/url_constants.h" #include "extensions/common/constants.h" -#include "googleurl/src/gurl.h" #include "testing/gtest/include/gtest/gtest.h" #include "third_party/WebKit/public/platform/WebString.h" +#include "url/gurl.h" namespace { diff --git a/chrome/browser/browsing_data/browsing_data_indexed_db_helper.h b/chrome/browser/browsing_data/browsing_data_indexed_db_helper.h index 5b8960e..bdcd036 100644 --- a/chrome/browser/browsing_data/browsing_data_indexed_db_helper.h +++ b/chrome/browser/browsing_data/browsing_data_indexed_db_helper.h @@ -16,7 +16,7 @@ #include "base/synchronization/lock.h" #include "base/time/time.h" #include "content/public/browser/indexed_db_context.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" class Profile; diff --git a/chrome/browser/browsing_data/browsing_data_local_storage_helper.h b/chrome/browser/browsing_data/browsing_data_local_storage_helper.h index a2dc394..80c55fd 100644 --- a/chrome/browser/browsing_data/browsing_data_local_storage_helper.h +++ b/chrome/browser/browsing_data/browsing_data_local_storage_helper.h @@ -17,7 +17,7 @@ #include "base/time/time.h" #include "chrome/common/url_constants.h" #include "content/public/browser/dom_storage_context.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" class Profile; diff --git a/chrome/browser/browsing_data/browsing_data_remover.h b/chrome/browser/browsing_data/browsing_data_remover.h index a831f9b..e75735e 100644 --- a/chrome/browser/browsing_data/browsing_data_remover.h +++ b/chrome/browser/browsing_data/browsing_data_remover.h @@ -19,7 +19,7 @@ #include "content/public/browser/dom_storage_context.h" #include "content/public/browser/notification_observer.h" #include "content/public/browser/notification_registrar.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" #include "webkit/common/quota/quota_types.h" class ExtensionSpecialStoragePolicy; diff --git a/chrome/browser/captive_portal/captive_portal_detector_unittest.cc b/chrome/browser/captive_portal/captive_portal_detector_unittest.cc index 6e22244..44f4b3e 100644 --- a/chrome/browser/captive_portal/captive_portal_detector_unittest.cc +++ b/chrome/browser/captive_portal/captive_portal_detector_unittest.cc @@ -10,10 +10,10 @@ #include "base/time/time.h" #include "chrome/browser/captive_portal/testing_utils.h" #include "chrome/test/base/testing_profile.h" -#include "googleurl/src/gurl.h" #include "net/base/net_errors.h" #include "net/url_request/url_fetcher.h" #include "testing/gtest/include/gtest/gtest.h" +#include "url/gurl.h" namespace captive_portal { diff --git a/chrome/browser/captive_portal/captive_portal_service.h b/chrome/browser/captive_portal/captive_portal_service.h index 87e2b1f..c8b5970 100644 --- a/chrome/browser/captive_portal/captive_portal_service.h +++ b/chrome/browser/captive_portal/captive_portal_service.h @@ -13,8 +13,8 @@ #include "base/timer/timer.h" #include "chrome/browser/captive_portal/captive_portal_detector.h" #include "components/browser_context_keyed_service/browser_context_keyed_service.h" -#include "googleurl/src/gurl.h" #include "net/base/backoff_entry.h" +#include "url/gurl.h" class Profile; diff --git a/chrome/browser/captive_portal/captive_portal_tab_reloader_unittest.cc b/chrome/browser/captive_portal/captive_portal_tab_reloader_unittest.cc index 522adb8..feebe41 100644 --- a/chrome/browser/captive_portal/captive_portal_tab_reloader_unittest.cc +++ b/chrome/browser/captive_portal/captive_portal_tab_reloader_unittest.cc @@ -12,12 +12,12 @@ #include "content/public/browser/interstitial_page.h" #include "content/public/browser/interstitial_page_delegate.h" #include "content/public/browser/web_contents.h" -#include "googleurl/src/gurl.h" #include "net/base/net_errors.h" #include "net/cert/cert_status_flags.h" #include "net/ssl/ssl_info.h" #include "testing/gmock/include/gmock/gmock.h" #include "testing/gtest/include/gtest/gtest.h" +#include "url/gurl.h" namespace captive_portal { diff --git a/chrome/browser/chrome_content_browser_client_browsertest.cc b/chrome/browser/chrome_content_browser_client_browsertest.cc index a8b6bbb..de24691 100644 --- a/chrome/browser/chrome_content_browser_client_browsertest.cc +++ b/chrome/browser/chrome_content_browser_client_browsertest.cc @@ -11,7 +11,7 @@ #include "content/public/browser/navigation_entry.h" #include "content/public/browser/web_contents.h" #include "content/public/common/content_switches.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" namespace content { diff --git a/chrome/browser/chrome_quota_permission_context.cc b/chrome/browser/chrome_quota_permission_context.cc index 5c42180..3e3907b 100644 --- a/chrome/browser/chrome_quota_permission_context.cc +++ b/chrome/browser/chrome_quota_permission_context.cc @@ -17,11 +17,11 @@ #include "content/public/browser/browser_thread.h" #include "content/public/browser/navigation_details.h" #include "content/public/browser/web_contents.h" -#include "googleurl/src/gurl.h" #include "grit/generated_resources.h" #include "grit/locale_settings.h" #include "net/base/net_util.h" #include "ui/base/l10n/l10n_util.h" +#include "url/gurl.h" #include "webkit/common/quota/quota_types.h" using content::BrowserThread; diff --git a/chrome/browser/chrome_to_mobile_service.h b/chrome/browser/chrome_to_mobile_service.h index 7f8391d..ee18dee 100644 --- a/chrome/browser/chrome_to_mobile_service.h +++ b/chrome/browser/chrome_to_mobile_service.h @@ -23,9 +23,9 @@ #include "content/public/browser/notification_observer.h" #include "content/public/browser/notification_registrar.h" #include "google_apis/gaia/oauth2_access_token_consumer.h" -#include "googleurl/src/gurl.h" #include "net/url_request/url_fetcher_delegate.h" #include "sync/notifier/invalidation_handler.h" +#include "url/gurl.h" class OAuth2AccessTokenFetcher; class Browser; diff --git a/chrome/browser/component_updater/component_updater_service.cc b/chrome/browser/component_updater/component_updater_service.cc index 8048855..7b3d683 100644 --- a/chrome/browser/component_updater/component_updater_service.cc +++ b/chrome/browser/component_updater/component_updater_service.cc @@ -33,13 +33,13 @@ #include "content/public/browser/notification_service.h" #include "content/public/browser/utility_process_host.h" #include "content/public/browser/utility_process_host_client.h" -#include "googleurl/src/gurl.h" #include "net/base/escape.h" #include "net/base/load_flags.h" #include "net/base/net_errors.h" #include "net/url_request/url_fetcher.h" #include "net/url_request/url_fetcher_delegate.h" #include "net/url_request/url_request_status.h" +#include "url/gurl.h" using content::BrowserThread; using content::UtilityProcessHost; diff --git a/chrome/browser/component_updater/component_updater_service.h b/chrome/browser/component_updater/component_updater_service.h index c097545..de1748b 100644 --- a/chrome/browser/component_updater/component_updater_service.h +++ b/chrome/browser/component_updater/component_updater_service.h @@ -9,7 +9,7 @@ #include <vector> #include "base/version.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" namespace net { class URLRequestContextGetter; diff --git a/chrome/browser/component_updater/test/component_updater_service_unittest.cc b/chrome/browser/component_updater/test/component_updater_service_unittest.cc index 37de921..9277e88 100644 --- a/chrome/browser/component_updater/test/component_updater_service_unittest.cc +++ b/chrome/browser/component_updater/test/component_updater_service_unittest.cc @@ -10,8 +10,8 @@ #include "base/memory/scoped_vector.h" #include "base/message_loop.h" #include "base/path_service.h" -#include "base/strings/stringprintf.h" #include "base/strings/string_number_conversions.h" +#include "base/strings/stringprintf.h" #include "base/values.h" #include "chrome/browser/component_updater/component_updater_service.h" #include "chrome/browser/component_updater/test/component_patcher_mock.h" @@ -24,7 +24,6 @@ #include "content/public/test/test_browser_thread.h" #include "content/public/test/test_notification_tracker.h" #include "content/test/net/url_request_prepackaged_interceptor.h" -#include "googleurl/src/gurl.h" #include "libxml/globals.h" #include "net/base/upload_bytes_element_reader.h" #include "net/url_request/url_fetcher.h" @@ -33,6 +32,7 @@ #include "net/url_request/url_request_simple_job.h" #include "net/url_request/url_request_test_util.h" #include "testing/gtest/include/gtest/gtest.h" +#include "url/gurl.h" using content::BrowserThread; using content::TestNotificationTracker; diff --git a/chrome/browser/component_updater/test/component_updater_service_unittest_win.cc b/chrome/browser/component_updater/test/component_updater_service_unittest_win.cc index 21b3a66..973f037 100644 --- a/chrome/browser/component_updater/test/component_updater_service_unittest_win.cc +++ b/chrome/browser/component_updater/test/component_updater_service_unittest_win.cc @@ -24,7 +24,6 @@ #include "content/public/test/test_browser_thread.h" #include "content/public/test/test_notification_tracker.h" #include "content/test/net/url_request_prepackaged_interceptor.h" -#include "googleurl/src/gurl.h" #include "libxml/globals.h" #include "net/base/upload_bytes_element_reader.h" #include "net/url_request/url_fetcher.h" @@ -33,6 +32,7 @@ #include "net/url_request/url_request_simple_job.h" #include "net/url_request/url_request_test_util.h" #include "testing/gtest/include/gtest/gtest.h" +#include "url/gurl.h" using content::BrowserThread; using content::TestNotificationTracker; diff --git a/chrome/browser/content_settings/content_settings_default_provider.cc b/chrome/browser/content_settings/content_settings_default_provider.cc index 51592fa..af80637 100644 --- a/chrome/browser/content_settings/content_settings_default_provider.cc +++ b/chrome/browser/content_settings/content_settings_default_provider.cc @@ -24,7 +24,7 @@ #include "content/public/browser/notification_details.h" #include "content/public/browser/notification_source.h" #include "content/public/browser/user_metrics.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" using content::BrowserThread; using content::UserMetricsAction; diff --git a/chrome/browser/content_settings/content_settings_default_provider_unittest.cc b/chrome/browser/content_settings/content_settings_default_provider_unittest.cc index cfd7448..0e2fdcf 100644 --- a/chrome/browser/content_settings/content_settings_default_provider_unittest.cc +++ b/chrome/browser/content_settings/content_settings_default_provider_unittest.cc @@ -12,8 +12,8 @@ #include "chrome/common/pref_names.h" #include "chrome/test/base/testing_profile.h" #include "content/public/test/test_browser_thread.h" -#include "googleurl/src/gurl.h" #include "testing/gtest/include/gtest/gtest.h" +#include "url/gurl.h" using ::testing::_; using content::BrowserThread; diff --git a/chrome/browser/content_settings/content_settings_origin_identifier_value_map.cc b/chrome/browser/content_settings/content_settings_origin_identifier_value_map.cc index 56cc0bd..c46cf91 100644 --- a/chrome/browser/content_settings/content_settings_origin_identifier_value_map.cc +++ b/chrome/browser/content_settings/content_settings_origin_identifier_value_map.cc @@ -12,7 +12,7 @@ #include "chrome/browser/content_settings/content_settings_rule.h" #include "chrome/browser/content_settings/content_settings_utils.h" #include "chrome/common/content_settings_types.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" namespace content_settings { diff --git a/chrome/browser/content_settings/content_settings_origin_identifier_value_map_unittest.cc b/chrome/browser/content_settings/content_settings_origin_identifier_value_map_unittest.cc index b8612a5..aad03fa 100644 --- a/chrome/browser/content_settings/content_settings_origin_identifier_value_map_unittest.cc +++ b/chrome/browser/content_settings/content_settings_origin_identifier_value_map_unittest.cc @@ -8,8 +8,8 @@ #include "base/values.h" #include "chrome/browser/content_settings/content_settings_rule.h" #include "chrome/browser/content_settings/content_settings_utils.h" -#include "googleurl/src/gurl.h" #include "testing/gtest/include/gtest/gtest.h" +#include "url/gurl.h" TEST(OriginIdentifierValueMapTest, SetGetValue) { content_settings::OriginIdentifierValueMap map; diff --git a/chrome/browser/content_settings/content_settings_policy_provider_unittest.cc b/chrome/browser/content_settings/content_settings_policy_provider_unittest.cc index ca4ab11..345663f 100644 --- a/chrome/browser/content_settings/content_settings_policy_provider_unittest.cc +++ b/chrome/browser/content_settings/content_settings_policy_provider_unittest.cc @@ -20,8 +20,8 @@ #include "chrome/test/base/testing_pref_service_syncable.h" #include "chrome/test/base/testing_profile.h" #include "content/public/test/test_browser_thread.h" -#include "googleurl/src/gurl.h" #include "testing/gtest/include/gtest/gtest.h" +#include "url/gurl.h" using ::testing::_; using content::BrowserThread; diff --git a/chrome/browser/content_settings/content_settings_pref_provider.cc b/chrome/browser/content_settings/content_settings_pref_provider.cc index 8f53c68..d5b4894 100644 --- a/chrome/browser/content_settings/content_settings_pref_provider.cc +++ b/chrome/browser/content_settings/content_settings_pref_provider.cc @@ -27,7 +27,7 @@ #include "content/public/browser/notification_details.h" #include "content/public/browser/notification_source.h" #include "content/public/browser/user_metrics.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" using content::BrowserThread; using content::UserMetricsAction; diff --git a/chrome/browser/content_settings/content_settings_pref_provider_unittest.cc b/chrome/browser/content_settings/content_settings_pref_provider_unittest.cc index b227855..efbe7cf4 100644 --- a/chrome/browser/content_settings/content_settings_pref_provider_unittest.cc +++ b/chrome/browser/content_settings/content_settings_pref_provider_unittest.cc @@ -28,8 +28,8 @@ #include "chrome/test/base/testing_profile.h" #include "components/user_prefs/pref_registry_syncable.h" #include "content/public/test/test_browser_thread.h" -#include "googleurl/src/gurl.h" #include "testing/gtest/include/gtest/gtest.h" +#include "url/gurl.h" using ::testing::_; using content::BrowserThread; diff --git a/chrome/browser/content_settings/content_settings_provider_unittest.cc b/chrome/browser/content_settings/content_settings_provider_unittest.cc index 0832a1c..d3d092c 100644 --- a/chrome/browser/content_settings/content_settings_provider_unittest.cc +++ b/chrome/browser/content_settings/content_settings_provider_unittest.cc @@ -7,7 +7,7 @@ #include "base/memory/scoped_ptr.h" #include "chrome/browser/content_settings/content_settings_mock_provider.h" #include "chrome/browser/content_settings/content_settings_utils.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" namespace content_settings { diff --git a/chrome/browser/content_settings/content_settings_utils.cc b/chrome/browser/content_settings/content_settings_utils.cc index 9754ba1..52f1650 100644 --- a/chrome/browser/content_settings/content_settings_utils.cc +++ b/chrome/browser/content_settings/content_settings_utils.cc @@ -17,7 +17,7 @@ #include "chrome/browser/content_settings/host_content_settings_map.h" #include "chrome/common/chrome_switches.h" #include "chrome/common/content_settings_pattern.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" namespace { diff --git a/chrome/browser/content_settings/cookie_settings.cc b/chrome/browser/content_settings/cookie_settings.cc index 2513a0c..bd82c1d 100644 --- a/chrome/browser/content_settings/cookie_settings.cc +++ b/chrome/browser/content_settings/cookie_settings.cc @@ -22,9 +22,9 @@ #include "content/public/browser/notification_source.h" #include "content/public/browser/user_metrics.h" #include "extensions/common/constants.h" -#include "googleurl/src/gurl.h" #include "net/base/net_errors.h" #include "net/base/static_cookie_policy.h" +#include "url/gurl.h" using content::BrowserThread; using content::UserMetricsAction; diff --git a/chrome/browser/content_settings/cookie_settings_unittest.cc b/chrome/browser/content_settings/cookie_settings_unittest.cc index 59f4570..45e1eeb 100644 --- a/chrome/browser/content_settings/cookie_settings_unittest.cc +++ b/chrome/browser/content_settings/cookie_settings_unittest.cc @@ -12,9 +12,9 @@ #include "chrome/common/pref_names.h" #include "chrome/test/base/testing_profile.h" #include "content/public/test/test_browser_thread.h" -#include "googleurl/src/gurl.h" #include "net/base/static_cookie_policy.h" #include "testing/gtest/include/gtest/gtest.h" +#include "url/gurl.h" using content::BrowserThread; diff --git a/chrome/browser/content_settings/host_content_settings_map.cc b/chrome/browser/content_settings/host_content_settings_map.cc index 4cc1d779..fad7c9d 100644 --- a/chrome/browser/content_settings/host_content_settings_map.cc +++ b/chrome/browser/content_settings/host_content_settings_map.cc @@ -35,9 +35,9 @@ #include "content/public/browser/user_metrics.h" #include "content/public/common/content_switches.h" #include "extensions/common/constants.h" -#include "googleurl/src/gurl.h" #include "net/base/net_errors.h" #include "net/base/static_cookie_policy.h" +#include "url/gurl.h" using content::BrowserThread; using content::UserMetricsAction; diff --git a/chrome/browser/content_settings/host_content_settings_map_unittest.cc b/chrome/browser/content_settings/host_content_settings_map_unittest.cc index 78f5a39..76f0dff 100644 --- a/chrome/browser/content_settings/host_content_settings_map_unittest.cc +++ b/chrome/browser/content_settings/host_content_settings_map_unittest.cc @@ -19,9 +19,9 @@ #include "chrome/test/base/testing_pref_service_syncable.h" #include "chrome/test/base/testing_profile.h" #include "content/public/test/test_browser_thread.h" -#include "googleurl/src/gurl.h" #include "net/base/static_cookie_policy.h" #include "testing/gtest/include/gtest/gtest.h" +#include "url/gurl.h" using content::BrowserThread; diff --git a/chrome/browser/content_settings/local_shared_objects_container.cc b/chrome/browser/content_settings/local_shared_objects_container.cc index 3fd6d06..d4a996d 100644 --- a/chrome/browser/content_settings/local_shared_objects_container.cc +++ b/chrome/browser/content_settings/local_shared_objects_container.cc @@ -14,9 +14,9 @@ #include "chrome/browser/browsing_data/cookies_tree_model.h" #include "chrome/browser/profiles/profile.h" #include "content/public/common/url_constants.h" -#include "googleurl/src/gurl.h" #include "net/base/registry_controlled_domains/registry_controlled_domain.h" #include "net/cookies/canonical_cookie.h" +#include "url/gurl.h" namespace { diff --git a/chrome/browser/content_settings/mock_settings_observer.cc b/chrome/browser/content_settings/mock_settings_observer.cc index c8de7fa..0640a2e 100644 --- a/chrome/browser/content_settings/mock_settings_observer.cc +++ b/chrome/browser/content_settings/mock_settings_observer.cc @@ -9,7 +9,7 @@ #include "chrome/common/chrome_notification_types.h" #include "content/public/browser/notification_service.h" #include "content/public/browser/notification_source.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" MockSettingsObserver::MockSettingsObserver() { registrar_.Add(this, chrome::NOTIFICATION_CONTENT_SETTINGS_CHANGED, diff --git a/chrome/browser/custom_home_pages_table_model.cc b/chrome/browser/custom_home_pages_table_model.cc index 0af2677..2460717 100644 --- a/chrome/browser/custom_home_pages_table_model.cc +++ b/chrome/browser/custom_home_pages_table_model.cc @@ -18,13 +18,13 @@ #include "chrome/common/pref_names.h" #include "chrome/common/url_constants.h" #include "content/public/browser/web_contents.h" -#include "googleurl/src/gurl.h" #include "grit/generated_resources.h" #include "grit/ui_resources.h" #include "net/base/net_util.h" #include "ui/base/l10n/l10n_util.h" #include "ui/base/models/table_model_observer.h" #include "ui/gfx/codec/png_codec.h" +#include "url/gurl.h" namespace { diff --git a/chrome/browser/download/download_query.cc b/chrome/browser/download/download_query.cc index d44f495..14bc73e 100644 --- a/chrome/browser/download/download_query.cc +++ b/chrome/browser/download/download_query.cc @@ -27,9 +27,9 @@ #include "chrome/common/pref_names.h" #include "content/public/browser/content_browser_client.h" #include "content/public/browser/download_item.h" -#include "googleurl/src/gurl.h" #include "net/base/net_util.h" #include "third_party/re2/re2/re2.h" +#include "url/gurl.h" using content::DownloadDangerType; using content::DownloadItem; diff --git a/chrome/browser/download/download_status_updater_mac.mm b/chrome/browser/download/download_status_updater_mac.mm index 0ccc05c..4e80610 100644 --- a/chrome/browser/download/download_status_updater_mac.mm +++ b/chrome/browser/download/download_status_updater_mac.mm @@ -10,7 +10,7 @@ #include "base/supports_user_data.h" #import "chrome/browser/ui/cocoa/dock_icon.h" #include "content/public/browser/download_item.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" // --- Private 10.8 API for showing progress --- // rdar://12058866 http://www.openradar.me/12058866 diff --git a/chrome/browser/download/download_status_updater_win.cc b/chrome/browser/download/download_status_updater_win.cc index df74cea..515e54e8 100644 --- a/chrome/browser/download/download_status_updater_win.cc +++ b/chrome/browser/download/download_status_updater_win.cc @@ -20,9 +20,9 @@ #include "chrome/browser/ui/browser_window.h" #include "content/public/browser/browser_context.h" #include "content/public/browser/browser_thread.h" -#include "googleurl/src/gurl.h" #include "grit/generated_resources.h" #include "ui/base/l10n/l10n_util.h" +#include "url/gurl.h" #include "win8/util/win8_util.h" // This code doesn't compile with Aura on. TODO(avi): hook it up so that diff --git a/chrome/browser/drive/drive_api_util.cc b/chrome/browser/drive/drive_api_util.cc index abcbf1b..b9a8274 100644 --- a/chrome/browser/drive/drive_api_util.cc +++ b/chrome/browser/drive/drive_api_util.cc @@ -13,9 +13,9 @@ #include "base/strings/stringprintf.h" #include "base/strings/utf_string_conversions.h" #include "chrome/browser/drive/drive_switches.h" -#include "googleurl/src/gurl.h" #include "net/base/escape.h" #include "third_party/re2/re2/re2.h" +#include "url/gurl.h" namespace drive { namespace util { diff --git a/chrome/browser/drive/drive_api_util_unittest.cc b/chrome/browser/drive/drive_api_util_unittest.cc index e9d59a7..1b4e32e 100644 --- a/chrome/browser/drive/drive_api_util_unittest.cc +++ b/chrome/browser/drive/drive_api_util_unittest.cc @@ -4,8 +4,8 @@ #include "chrome/browser/drive/drive_api_util.h" -#include "googleurl/src/gurl.h" #include "testing/gtest/include/gtest/gtest.h" +#include "url/gurl.h" namespace drive { namespace util { diff --git a/chrome/browser/enumerate_modules_model_win.h b/chrome/browser/enumerate_modules_model_win.h index 58320c4..51243d1 100644 --- a/chrome/browser/enumerate_modules_model_win.h +++ b/chrome/browser/enumerate_modules_model_win.h @@ -14,7 +14,7 @@ #include "base/strings/string16.h" #include "base/timer/timer.h" #include "content/public/browser/browser_thread.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" class EnumerateModulesModel; diff --git a/chrome/browser/external_protocol/external_protocol_handler.cc b/chrome/browser/external_protocol/external_protocol_handler.cc index 580d261..04d59e8 100644 --- a/chrome/browser/external_protocol/external_protocol_handler.cc +++ b/chrome/browser/external_protocol/external_protocol_handler.cc @@ -19,8 +19,8 @@ #include "chrome/browser/prefs/scoped_user_pref_update.h" #include "chrome/common/pref_names.h" #include "content/public/browser/browser_thread.h" -#include "googleurl/src/gurl.h" #include "net/base/escape.h" +#include "url/gurl.h" using content::BrowserThread; diff --git a/chrome/browser/favicon/favicon_changed_details.h b/chrome/browser/favicon/favicon_changed_details.h index 921513a..ec1277c 100644 --- a/chrome/browser/favicon/favicon_changed_details.h +++ b/chrome/browser/favicon/favicon_changed_details.h @@ -8,7 +8,7 @@ #include <set> #include "chrome/browser/history/history_details.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" // Details for chrome::NOTIFICATION_FAVICON_CHANGED. struct FaviconChangedDetails : public history::HistoryDetails { diff --git a/chrome/browser/favicon/favicon_handler.h b/chrome/browser/favicon/favicon_handler.h index a1079a8..2d62d5b 100644 --- a/chrome/browser/favicon/favicon_handler.h +++ b/chrome/browser/favicon/favicon_handler.h @@ -15,9 +15,9 @@ #include "chrome/common/cancelable_task_tracker.h" #include "chrome/common/ref_counted_util.h" #include "content/public/common/favicon_url.h" -#include "googleurl/src/gurl.h" #include "ui/gfx/favicon_size.h" #include "ui/gfx/image/image.h" +#include "url/gurl.h" class FaviconHandlerDelegate; class Profile; diff --git a/chrome/browser/favicon/favicon_types.h b/chrome/browser/favicon/favicon_types.h index f48ec4b..16724e0 100644 --- a/chrome/browser/favicon/favicon_types.h +++ b/chrome/browser/favicon/favicon_types.h @@ -6,9 +6,9 @@ #define CHROME_BROWSER_FAVICON_FAVICON_TYPES_H_ #include "base/memory/ref_counted_memory.h" -#include "googleurl/src/gurl.h" #include "ui/gfx/image/image.h" #include "ui/gfx/size.h" +#include "url/gurl.h" namespace chrome { diff --git a/chrome/browser/favicon/favicon_util.cc b/chrome/browser/favicon/favicon_util.cc index 3a4a79e..21c9d75 100644 --- a/chrome/browser/favicon/favicon_util.cc +++ b/chrome/browser/favicon/favicon_util.cc @@ -8,7 +8,6 @@ #include "chrome/browser/history/select_favicon_frames.h" #include "content/public/browser/render_view_host.h" #include "content/public/child/image_decoder_utils.h" -#include "googleurl/src/gurl.h" #include "skia/ext/image_operations.h" #include "third_party/skia/include/core/SkBitmap.h" #include "ui/gfx/codec/png_codec.h" @@ -16,6 +15,7 @@ #include "ui/gfx/image/image_png_rep.h" #include "ui/gfx/image/image_skia.h" #include "ui/gfx/size.h" +#include "url/gurl.h" #if defined(OS_MACOSX) && !defined(OS_IOS) #include "base/mac/mac_util.h" diff --git a/chrome/browser/favicon/imported_favicon_usage.h b/chrome/browser/favicon/imported_favicon_usage.h index ec7957d..0da3a4f 100644 --- a/chrome/browser/favicon/imported_favicon_usage.h +++ b/chrome/browser/favicon/imported_favicon_usage.h @@ -8,7 +8,7 @@ #include <set> #include <vector> -#include "googleurl/src/gurl.h" +#include "url/gurl.h" // Used to correlate favicons to imported bookmarks. struct ImportedFaviconUsage { diff --git a/chrome/browser/feedback/feedback_data.h b/chrome/browser/feedback/feedback_data.h index 14217cc..111721b 100644 --- a/chrome/browser/feedback/feedback_data.h +++ b/chrome/browser/feedback/feedback_data.h @@ -10,7 +10,7 @@ #include "base/memory/ref_counted.h" #include "chrome/browser/ui/webui/screenshot_source.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" #if defined(OS_CHROMEOS) #include "chrome/browser/chromeos/system_logs/system_logs_fetcher.h" diff --git a/chrome/browser/feedback/feedback_util.cc b/chrome/browser/feedback/feedback_util.cc index 2ed8930..c16691c 100644 --- a/chrome/browser/feedback/feedback_util.cc +++ b/chrome/browser/feedback/feedback_util.cc @@ -28,7 +28,6 @@ #include "content/public/browser/navigation_controller.h" #include "content/public/browser/web_contents.h" #include "content/public/common/content_client.h" -#include "googleurl/src/gurl.h" #include "grit/generated_resources.h" #include "grit/locale_settings.h" #include "grit/theme_resources.h" @@ -39,6 +38,7 @@ #include "net/url_request/url_request_status.h" #include "third_party/icu/public/common/unicode/locid.h" #include "ui/base/l10n/l10n_util.h" +#include "url/gurl.h" using content::WebContents; diff --git a/chrome/browser/first_run/first_run.cc b/chrome/browser/first_run/first_run.cc index 99df076..367d018 100644 --- a/chrome/browser/first_run/first_run.cc +++ b/chrome/browser/first_run/first_run.cc @@ -56,7 +56,7 @@ #include "content/public/browser/user_metrics.h" #include "content/public/browser/web_contents.h" #include "google_apis/gaia/gaia_auth_util.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" using content::UserMetricsAction; diff --git a/chrome/browser/first_run/first_run_linux.cc b/chrome/browser/first_run/first_run_linux.cc index 4d4d084..3a2b58d 100644 --- a/chrome/browser/first_run/first_run_linux.cc +++ b/chrome/browser/first_run/first_run_linux.cc @@ -20,8 +20,8 @@ #include "chrome/installer/util/google_update_settings.h" #include "chrome/installer/util/master_preferences.h" #include "content/public/common/result_codes.h" -#include "googleurl/src/gurl.h" #include "ui/base/ui_base_switches.h" +#include "url/gurl.h" namespace first_run { namespace internal { diff --git a/chrome/browser/geolocation/chrome_access_token_store.cc b/chrome/browser/geolocation/chrome_access_token_store.cc index 9bf2b9f..cefb644 100644 --- a/chrome/browser/geolocation/chrome_access_token_store.cc +++ b/chrome/browser/geolocation/chrome_access_token_store.cc @@ -14,7 +14,7 @@ #include "chrome/browser/prefs/scoped_user_pref_update.h" #include "chrome/common/pref_names.h" #include "content/public/browser/browser_thread.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" using content::AccessTokenStore; using content::BrowserThread; diff --git a/chrome/browser/geolocation/geolocation_infobar_delegate.h b/chrome/browser/geolocation/geolocation_infobar_delegate.h index 64e2f2b..d149836 100644 --- a/chrome/browser/geolocation/geolocation_infobar_delegate.h +++ b/chrome/browser/geolocation/geolocation_infobar_delegate.h @@ -5,11 +5,11 @@ #ifndef CHROME_BROWSER_GEOLOCATION_GEOLOCATION_INFOBAR_DELEGATE_H_ #define CHROME_BROWSER_GEOLOCATION_GEOLOCATION_INFOBAR_DELEGATE_H_ +#include <string> + #include "chrome/browser/geolocation/geolocation_permission_request_id.h" #include "chrome/browser/infobars/confirm_infobar_delegate.h" -#include "googleurl/src/gurl.h" - -#include <string> +#include "url/gurl.h" class GeolocationInfoBarQueueController; class InfoBarService; diff --git a/chrome/browser/geolocation/geolocation_settings_state.h b/chrome/browser/geolocation/geolocation_settings_state.h index e9276264..c5f9948 100644 --- a/chrome/browser/geolocation/geolocation_settings_state.h +++ b/chrome/browser/geolocation/geolocation_settings_state.h @@ -9,7 +9,7 @@ #include <set> #include "chrome/common/content_settings.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" class Profile; diff --git a/chrome/browser/google/google_url_tracker.h b/chrome/browser/google/google_url_tracker.h index 2784179..d71e7e7 100644 --- a/chrome/browser/google/google_url_tracker.h +++ b/chrome/browser/google/google_url_tracker.h @@ -15,10 +15,10 @@ #include "base/memory/weak_ptr.h" #include "chrome/browser/google/google_url_tracker_map_entry.h" #include "components/browser_context_keyed_service/browser_context_keyed_service.h" -#include "googleurl/src/gurl.h" #include "net/base/network_change_notifier.h" #include "net/url_request/url_fetcher.h" #include "net/url_request/url_fetcher_delegate.h" +#include "url/gurl.h" class GoogleURLTrackerNavigationHelper; class PrefService; diff --git a/chrome/browser/google/google_url_tracker_infobar_delegate.h b/chrome/browser/google/google_url_tracker_infobar_delegate.h index 694d6ba..7e01655 100644 --- a/chrome/browser/google/google_url_tracker_infobar_delegate.h +++ b/chrome/browser/google/google_url_tracker_infobar_delegate.h @@ -6,7 +6,7 @@ #define CHROME_BROWSER_GOOGLE_GOOGLE_URL_TRACKER_INFOBAR_DELEGATE_H_ #include "chrome/browser/infobars/confirm_infobar_delegate.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" class GoogleURLTracker; diff --git a/chrome/browser/google/google_url_tracker_navigation_helper_impl.h b/chrome/browser/google/google_url_tracker_navigation_helper_impl.h index a710b5e..b8ec45f 100644 --- a/chrome/browser/google/google_url_tracker_navigation_helper_impl.h +++ b/chrome/browser/google/google_url_tracker_navigation_helper_impl.h @@ -8,7 +8,7 @@ #include "chrome/browser/google/google_url_tracker_navigation_helper.h" #include "content/public/browser/notification_observer.h" #include "content/public/browser/notification_registrar.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" class GoogleURLTrackerNavigationHelperImpl : public GoogleURLTrackerNavigationHelper, diff --git a/chrome/browser/google/google_util.cc b/chrome/browser/google/google_util.cc index 5d6a472..d14ec5a 100644 --- a/chrome/browser/google/google_util.cc +++ b/chrome/browser/google/google_util.cc @@ -17,9 +17,9 @@ #include "chrome/browser/google/google_url_tracker.h" #include "chrome/common/chrome_switches.h" #include "chrome/installer/util/google_update_settings.h" -#include "googleurl/src/gurl.h" #include "net/base/registry_controlled_domains/registry_controlled_domain.h" #include "net/base/url_util.h" +#include "url/gurl.h" #if defined(OS_MACOSX) #include "chrome/browser/mac/keystone_glue.h" diff --git a/chrome/browser/google_apis/base_requests.h b/chrome/browser/google_apis/base_requests.h index 47c98b1..d57a6c6 100644 --- a/chrome/browser/google_apis/base_requests.h +++ b/chrome/browser/google_apis/base_requests.h @@ -16,9 +16,9 @@ #include "base/memory/weak_ptr.h" #include "base/threading/thread_checker.h" #include "chrome/browser/google_apis/gdata_errorcode.h" -#include "googleurl/src/gurl.h" #include "net/url_request/url_fetcher.h" #include "net/url_request/url_fetcher_delegate.h" +#include "url/gurl.h" namespace base { class Value; diff --git a/chrome/browser/google_apis/drive_api_parser.h b/chrome/browser/google_apis/drive_api_parser.h index 73852a6..7042320 100644 --- a/chrome/browser/google_apis/drive_api_parser.h +++ b/chrome/browser/google_apis/drive_api_parser.h @@ -13,7 +13,7 @@ #include "base/memory/scoped_vector.h" #include "base/strings/string_piece.h" #include "base/time/time.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" // TODO(kochi): Eliminate this dependency once dependency to EntryKind is gone. // http://crbug.com/142293 #include "chrome/browser/google_apis/gdata_wapi_parser.h" diff --git a/chrome/browser/google_apis/drive_api_url_generator.h b/chrome/browser/google_apis/drive_api_url_generator.h index 877c4e3..f121969 100644 --- a/chrome/browser/google_apis/drive_api_url_generator.h +++ b/chrome/browser/google_apis/drive_api_url_generator.h @@ -7,7 +7,7 @@ #include <string> -#include "googleurl/src/gurl.h" +#include "url/gurl.h" namespace google_apis { diff --git a/chrome/browser/google_apis/drive_api_url_generator_unittest.cc b/chrome/browser/google_apis/drive_api_url_generator_unittest.cc index a661617..cb6212d 100644 --- a/chrome/browser/google_apis/drive_api_url_generator_unittest.cc +++ b/chrome/browser/google_apis/drive_api_url_generator_unittest.cc @@ -5,8 +5,8 @@ #include "chrome/browser/google_apis/drive_api_url_generator.h" #include "chrome/browser/google_apis/test_util.h" -#include "googleurl/src/gurl.h" #include "testing/gtest/include/gtest/gtest.h" +#include "url/gurl.h" namespace google_apis { diff --git a/chrome/browser/google_apis/gdata_contacts_requests.cc b/chrome/browser/google_apis/gdata_contacts_requests.cc index 23fe34f..74c547d 100644 --- a/chrome/browser/google_apis/gdata_contacts_requests.cc +++ b/chrome/browser/google_apis/gdata_contacts_requests.cc @@ -5,8 +5,8 @@ #include "chrome/browser/google_apis/gdata_contacts_requests.h" #include "chrome/browser/google_apis/time_util.h" -#include "googleurl/src/gurl.h" #include "net/base/url_util.h" +#include "url/gurl.h" namespace google_apis { diff --git a/chrome/browser/google_apis/gdata_wapi_parser.h b/chrome/browser/google_apis/gdata_wapi_parser.h index 8c47498..332e8d6 100644 --- a/chrome/browser/google_apis/gdata_wapi_parser.h +++ b/chrome/browser/google_apis/gdata_wapi_parser.h @@ -15,7 +15,7 @@ #include "base/strings/string_piece.h" #include "base/time/time.h" #include "chrome/browser/google_apis/drive_entry_kinds.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" namespace base { class FilePath; diff --git a/chrome/browser/google_apis/gdata_wapi_url_generator.cc b/chrome/browser/google_apis/gdata_wapi_url_generator.cc index f138f95f..f4956a8 100644 --- a/chrome/browser/google_apis/gdata_wapi_url_generator.cc +++ b/chrome/browser/google_apis/gdata_wapi_url_generator.cc @@ -7,9 +7,9 @@ #include "base/logging.h" #include "base/strings/string_number_conversions.h" #include "base/strings/stringprintf.h" -#include "googleurl/src/gurl.h" #include "net/base/escape.h" #include "net/base/url_util.h" +#include "url/gurl.h" namespace google_apis { namespace { diff --git a/chrome/browser/google_apis/gdata_wapi_url_generator.h b/chrome/browser/google_apis/gdata_wapi_url_generator.h index ce306e3..31d17f9 100644 --- a/chrome/browser/google_apis/gdata_wapi_url_generator.h +++ b/chrome/browser/google_apis/gdata_wapi_url_generator.h @@ -9,7 +9,7 @@ #include <string> -#include "googleurl/src/gurl.h" +#include "url/gurl.h" namespace google_apis { diff --git a/chrome/browser/google_apis/gdata_wapi_url_generator_unittest.cc b/chrome/browser/google_apis/gdata_wapi_url_generator_unittest.cc index 0bcefb8..ef8f1da 100644 --- a/chrome/browser/google_apis/gdata_wapi_url_generator_unittest.cc +++ b/chrome/browser/google_apis/gdata_wapi_url_generator_unittest.cc @@ -4,8 +4,8 @@ #include "chrome/browser/google_apis/gdata_wapi_url_generator.h" -#include "googleurl/src/gurl.h" #include "testing/gtest/include/gtest/gtest.h" +#include "url/gurl.h" namespace google_apis { diff --git a/chrome/browser/google_apis/test_util.cc b/chrome/browser/google_apis/test_util.cc index f23f518..30c2d35 100644 --- a/chrome/browser/google_apis/test_util.cc +++ b/chrome/browser/google_apis/test_util.cc @@ -21,9 +21,9 @@ #include "chrome/browser/google_apis/gdata_wapi_parser.h" #include "chrome/browser/google_apis/gdata_wapi_requests.h" #include "content/public/browser/browser_thread.h" -#include "googleurl/src/gurl.h" #include "net/test/embedded_test_server/http_request.h" #include "net/test/embedded_test_server/http_response.h" +#include "url/gurl.h" namespace google_apis { namespace test_util { diff --git a/chrome/browser/history/download_row.h b/chrome/browser/history/download_row.h index 70aa1a6..7e91655 100644 --- a/chrome/browser/history/download_row.h +++ b/chrome/browser/history/download_row.h @@ -12,7 +12,7 @@ #include "content/public/browser/download_danger_type.h" #include "content/public/browser/download_interrupt_reasons.h" #include "content/public/browser/download_item.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" namespace history { diff --git a/chrome/browser/history/history_backend.cc b/chrome/browser/history/history_backend.cc index 62bff20..007a1dd 100644 --- a/chrome/browser/history/history_backend.cc +++ b/chrome/browser/history/history_backend.cc @@ -39,11 +39,11 @@ #include "chrome/common/chrome_constants.h" #include "chrome/common/chrome_notification_types.h" #include "chrome/common/url_constants.h" -#include "googleurl/src/gurl.h" #include "grit/chromium_strings.h" #include "grit/generated_resources.h" #include "net/base/registry_controlled_domains/registry_controlled_domain.h" #include "sql/error_delegate_util.h" +#include "url/gurl.h" #if defined(OS_ANDROID) #include "chrome/browser/history/android/android_provider_backend.h" diff --git a/chrome/browser/history/history_backend_unittest.cc b/chrome/browser/history/history_backend_unittest.cc index 65d2781..24225cf 100644 --- a/chrome/browser/history/history_backend_unittest.cc +++ b/chrome/browser/history/history_backend_unittest.cc @@ -39,11 +39,11 @@ #include "content/public/browser/notification_details.h" #include "content/public/browser/notification_source.h" #include "content/public/test/test_browser_thread.h" -#include "googleurl/src/gurl.h" #include "testing/gtest/include/gtest/gtest.h" #include "third_party/skia/include/core/SkBitmap.h" #include "ui/gfx/codec/jpeg_codec.h" #include "ui/gfx/image/image.h" +#include "url/gurl.h" using base::Time; using base::TimeDelta; diff --git a/chrome/browser/history/history_browsertest.cc b/chrome/browser/history/history_browsertest.cc index a7831ff..a563511 100644 --- a/chrome/browser/history/history_browsertest.cc +++ b/chrome/browser/history/history_browsertest.cc @@ -25,7 +25,7 @@ #include "content/public/browser/web_contents.h" #include "content/public/test/browser_test_utils.h" #include "content/public/test/test_browser_thread.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" using content::BrowserThread; diff --git a/chrome/browser/history/history_notifications.h b/chrome/browser/history/history_notifications.h index afe48f1..2f596e8 100644 --- a/chrome/browser/history/history_notifications.h +++ b/chrome/browser/history/history_notifications.h @@ -12,7 +12,7 @@ #include "chrome/browser/history/history_details.h" #include "chrome/browser/history/history_types.h" #include "chrome/browser/search_engines/template_url_id.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" namespace history { diff --git a/chrome/browser/history/history_publisher_win.cc b/chrome/browser/history/history_publisher_win.cc index 030ef3a..e6178b5 100644 --- a/chrome/browser/history/history_publisher_win.cc +++ b/chrome/browser/history/history_publisher_win.cc @@ -15,7 +15,7 @@ #include "base/win/scoped_bstr.h" #include "base/win/scoped_comptr.h" #include "base/win/scoped_variant.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" namespace { diff --git a/chrome/browser/history/history_types.h b/chrome/browser/history/history_types.h index 0512eee..d78d40f 100644 --- a/chrome/browser/history/history_types.h +++ b/chrome/browser/history/history_types.h @@ -23,9 +23,9 @@ #include "chrome/common/ref_counted_util.h" #include "chrome/common/thumbnail_score.h" #include "content/public/common/page_transition_types.h" -#include "googleurl/src/gurl.h" #include "ui/gfx/image/image.h" #include "ui/gfx/size.h" +#include "url/gurl.h" class PageUsageData; diff --git a/chrome/browser/history/in_memory_url_index_types.h b/chrome/browser/history/in_memory_url_index_types.h index b4f51cf..19547fa 100644 --- a/chrome/browser/history/in_memory_url_index_types.h +++ b/chrome/browser/history/in_memory_url_index_types.h @@ -12,7 +12,7 @@ #include "base/strings/string16.h" #include "chrome/browser/autocomplete/history_provider_util.h" #include "chrome/browser/history/history_types.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" namespace history { diff --git a/chrome/browser/history/page_usage_data.h b/chrome/browser/history/page_usage_data.h index de353e0..07f58dd 100644 --- a/chrome/browser/history/page_usage_data.h +++ b/chrome/browser/history/page_usage_data.h @@ -8,7 +8,7 @@ #include "base/strings/string16.h" #include "base/time/time.h" #include "chrome/browser/history/history_types.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" class SkBitmap; diff --git a/chrome/browser/history/shortcuts_backend.h b/chrome/browser/history/shortcuts_backend.h index 588c5065..6979271 100644 --- a/chrome/browser/history/shortcuts_backend.h +++ b/chrome/browser/history/shortcuts_backend.h @@ -21,7 +21,7 @@ #include "components/browser_context_keyed_service/refcounted_browser_context_keyed_service.h" #include "content/public/browser/notification_observer.h" #include "content/public/browser/notification_registrar.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" class Profile; diff --git a/chrome/browser/history/shortcuts_database.h b/chrome/browser/history/shortcuts_database.h index 36e803d..647b000 100644 --- a/chrome/browser/history/shortcuts_database.h +++ b/chrome/browser/history/shortcuts_database.h @@ -14,8 +14,8 @@ #include "base/memory/ref_counted.h" #include "base/strings/string16.h" #include "chrome/browser/history/shortcuts_backend.h" -#include "googleurl/src/gurl.h" #include "sql/connection.h" +#include "url/gurl.h" class Profile; diff --git a/chrome/browser/history/text_database.h b/chrome/browser/history/text_database.h index efb9563..ddb247b 100644 --- a/chrome/browser/history/text_database.h +++ b/chrome/browser/history/text_database.h @@ -12,9 +12,9 @@ #include "base/files/file_path.h" #include "base/strings/string16.h" #include "chrome/browser/history/history_types.h" -#include "googleurl/src/gurl.h" #include "sql/connection.h" #include "sql/meta_table.h" +#include "url/gurl.h" namespace history { diff --git a/chrome/browser/history/thumbnail_database_unittest.cc b/chrome/browser/history/thumbnail_database_unittest.cc index 68d6df4..6446fd1 100644 --- a/chrome/browser/history/thumbnail_database_unittest.cc +++ b/chrome/browser/history/thumbnail_database_unittest.cc @@ -19,10 +19,10 @@ #include "chrome/common/thumbnail_score.h" #include "chrome/test/base/testing_profile.h" #include "chrome/tools/profiles/thumbnail-inl.h" -#include "googleurl/src/gurl.h" #include "testing/gtest/include/gtest/gtest.h" #include "third_party/skia/include/core/SkBitmap.h" #include "ui/gfx/codec/jpeg_codec.h" +#include "url/gurl.h" using base::Time; using base::TimeDelta; diff --git a/chrome/browser/history/top_sites.h b/chrome/browser/history/top_sites.h index 47351ad..b55821d 100644 --- a/chrome/browser/history/top_sites.h +++ b/chrome/browser/history/top_sites.h @@ -13,9 +13,9 @@ #include "chrome/browser/history/history_service.h" #include "chrome/browser/history/history_types.h" #include "chrome/common/thumbnail_score.h" -#include "googleurl/src/gurl.h" #include "third_party/skia/include/core/SkColor.h" #include "ui/gfx/image/image.h" +#include "url/gurl.h" class Profile; diff --git a/chrome/browser/history/top_sites_impl.h b/chrome/browser/history/top_sites_impl.h index 46aa0af..025ac4d 100644 --- a/chrome/browser/history/top_sites_impl.h +++ b/chrome/browser/history/top_sites_impl.h @@ -26,9 +26,9 @@ #include "chrome/browser/history/top_sites_backend.h" #include "chrome/common/cancelable_task_tracker.h" #include "chrome/common/thumbnail_score.h" -#include "googleurl/src/gurl.h" #include "third_party/skia/include/core/SkColor.h" #include "ui/gfx/image/image.h" +#include "url/gurl.h" class Profile; diff --git a/chrome/browser/history/top_sites_impl_unittest.cc b/chrome/browser/history/top_sites_impl_unittest.cc index 00d9fac..566e8e9 100644 --- a/chrome/browser/history/top_sites_impl_unittest.cc +++ b/chrome/browser/history/top_sites_impl_unittest.cc @@ -33,7 +33,6 @@ #include "chrome/tools/profiles/thumbnail-inl.h" #include "content/public/test/test_browser_thread.h" #include "content/public/test/test_utils.h" -#include "googleurl/src/gurl.h" #include "grit/chromium_strings.h" #include "grit/generated_resources.h" #include "grit/locale_settings.h" @@ -41,6 +40,7 @@ #include "third_party/skia/include/core/SkBitmap.h" #include "ui/base/l10n/l10n_util.h" #include "ui/gfx/codec/jpeg_codec.h" +#include "url/gurl.h" using content::BrowserThread; diff --git a/chrome/browser/history/top_sites_likely_impl.h b/chrome/browser/history/top_sites_likely_impl.h index d209312..89122d4 100644 --- a/chrome/browser/history/top_sites_likely_impl.h +++ b/chrome/browser/history/top_sites_likely_impl.h @@ -26,9 +26,9 @@ #include "chrome/browser/history/top_sites_backend.h" #include "chrome/common/cancelable_task_tracker.h" #include "chrome/common/thumbnail_score.h" -#include "googleurl/src/gurl.h" #include "third_party/skia/include/core/SkColor.h" #include "ui/gfx/image/image.h" +#include "url/gurl.h" class Profile; diff --git a/chrome/browser/history/top_sites_likely_impl_unittest.cc b/chrome/browser/history/top_sites_likely_impl_unittest.cc index 08b523c..14529ca 100644 --- a/chrome/browser/history/top_sites_likely_impl_unittest.cc +++ b/chrome/browser/history/top_sites_likely_impl_unittest.cc @@ -33,7 +33,6 @@ #include "chrome/tools/profiles/thumbnail-inl.h" #include "content/public/test/test_browser_thread.h" #include "content/public/test/test_utils.h" -#include "googleurl/src/gurl.h" #include "grit/chromium_strings.h" #include "grit/generated_resources.h" #include "grit/locale_settings.h" @@ -41,6 +40,7 @@ #include "third_party/skia/include/core/SkBitmap.h" #include "ui/base/l10n/l10n_util.h" #include "ui/gfx/codec/jpeg_codec.h" +#include "url/gurl.h" using content::BrowserThread; diff --git a/chrome/browser/history/url_database.cc b/chrome/browser/history/url_database.cc index 9ac4e22..4f5a72d 100644 --- a/chrome/browser/history/url_database.cc +++ b/chrome/browser/history/url_database.cc @@ -12,9 +12,9 @@ #include "base/i18n/case_conversion.h" #include "base/strings/utf_string_conversions.h" #include "chrome/common/url_constants.h" -#include "googleurl/src/gurl.h" #include "sql/statement.h" #include "ui/base/l10n/l10n_util.h" +#include "url/gurl.h" namespace history { diff --git a/chrome/browser/history/web_history_service.cc b/chrome/browser/history/web_history_service.cc index cea7f2f..8e91d69 100644 --- a/chrome/browser/history/web_history_service.cc +++ b/chrome/browser/history/web_history_service.cc @@ -16,13 +16,13 @@ #include "chrome/browser/signin/profile_oauth2_token_service_factory.h" #include "google_apis/gaia/gaia_urls.h" #include "google_apis/gaia/google_service_auth_error.h" -#include "googleurl/src/gurl.h" #include "net/base/load_flags.h" #include "net/base/url_util.h" #include "net/http/http_status_code.h" #include "net/http/http_util.h" #include "net/url_request/url_fetcher.h" #include "net/url_request/url_fetcher_delegate.h" +#include "url/gurl.h" namespace history { diff --git a/chrome/browser/iframe_browsertest.cc b/chrome/browser/iframe_browsertest.cc index 3f650e3..941cb3f 100644 --- a/chrome/browser/iframe_browsertest.cc +++ b/chrome/browser/iframe_browsertest.cc @@ -9,7 +9,7 @@ #include "chrome/test/base/in_process_browser_test.h" #include "chrome/test/base/ui_test_utils.h" #include "content/public/browser/web_contents.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" class IFrameTest : public InProcessBrowserTest { protected: diff --git a/chrome/browser/importer/firefox3_importer.cc b/chrome/browser/importer/firefox3_importer.cc index 29fc1f3..e1c331b 100644 --- a/chrome/browser/importer/firefox3_importer.cc +++ b/chrome/browser/importer/firefox3_importer.cc @@ -25,10 +25,10 @@ #include "chrome/common/time_format.h" #include "content/public/browser/browser_thread.h" #include "content/public/common/password_form.h" -#include "googleurl/src/gurl.h" #include "grit/generated_resources.h" #include "sql/connection.h" #include "sql/statement.h" +#include "url/gurl.h" using content::BrowserThread; diff --git a/chrome/browser/importer/firefox_importer_utils.cc b/chrome/browser/importer/firefox_importer_utils.cc index e3480cd..5610f5b 100644 --- a/chrome/browser/importer/firefox_importer_utils.cc +++ b/chrome/browser/importer/firefox_importer_utils.cc @@ -16,9 +16,9 @@ #include "base/strings/stringprintf.h" #include "base/strings/utf_string_conversions.h" #include "base/values.h" -#include "googleurl/src/gurl.h" #include "grit/generated_resources.h" #include "ui/base/l10n/l10n_util.h" +#include "url/gurl.h" base::FilePath GetFirefoxProfilePath() { base::FilePath ini_file = GetProfilesINI(); diff --git a/chrome/browser/importer/ie_importer.cc b/chrome/browser/importer/ie_importer.cc index 154e8d8..a57db9d 100644 --- a/chrome/browser/importer/ie_importer.cc +++ b/chrome/browser/importer/ie_importer.cc @@ -41,9 +41,9 @@ #include "chrome/common/url_constants.h" #include "components/webdata/encryptor/ie7_password.h" #include "content/public/common/password_form.h" -#include "googleurl/src/gurl.h" #include "grit/generated_resources.h" #include "ui/base/l10n/l10n_util.h" +#include "url/gurl.h" namespace { diff --git a/chrome/browser/importer/importer_data_types.h b/chrome/browser/importer/importer_data_types.h index 7ce03bf..eae32a8 100644 --- a/chrome/browser/importer/importer_data_types.h +++ b/chrome/browser/importer/importer_data_types.h @@ -12,7 +12,7 @@ #include "base/memory/ref_counted.h" #include "base/strings/string16.h" #include "chrome/browser/importer/importer_type.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" // Types needed for importing data from other browsers and the Google Toolbar. namespace importer { diff --git a/chrome/browser/importer/profile_writer.h b/chrome/browser/importer/profile_writer.h index 49708e5..2d7b6db 100644 --- a/chrome/browser/importer/profile_writer.h +++ b/chrome/browser/importer/profile_writer.h @@ -14,7 +14,7 @@ #include "base/time/time.h" #include "build/build_config.h" #include "chrome/browser/history/history_types.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" struct ImportedBookmarkEntry; struct ImportedFaviconUsage; diff --git a/chrome/browser/importer/safari_importer.mm b/chrome/browser/importer/safari_importer.mm index 01b575a..d910d6d 100644 --- a/chrome/browser/importer/safari_importer.mm +++ b/chrome/browser/importer/safari_importer.mm @@ -20,10 +20,10 @@ #include "chrome/browser/favicon/imported_favicon_usage.h" #include "chrome/browser/importer/importer_bridge.h" #include "chrome/common/url_constants.h" -#include "googleurl/src/gurl.h" #include "grit/generated_resources.h" #include "net/base/data_url.h" #include "sql/statement.h" +#include "url/gurl.h" namespace { diff --git a/chrome/browser/intranet_redirect_detector.h b/chrome/browser/intranet_redirect_detector.h index 68ef522..2a84791 100644 --- a/chrome/browser/intranet_redirect_detector.h +++ b/chrome/browser/intranet_redirect_detector.h @@ -12,10 +12,10 @@ #include "base/memory/weak_ptr.h" #include "content/public/browser/notification_observer.h" #include "content/public/browser/notification_registrar.h" -#include "googleurl/src/gurl.h" #include "net/base/network_change_notifier.h" #include "net/dns/host_resolver_proc.h" #include "net/url_request/url_fetcher_delegate.h" +#include "url/gurl.h" class PrefRegistrySimple; diff --git a/chrome/browser/jumplist_win.cc b/chrome/browser/jumplist_win.cc index 2ceb31a..4447141 100644 --- a/chrome/browser/jumplist_win.cc +++ b/chrome/browser/jumplist_win.cc @@ -40,7 +40,6 @@ #include "chrome/common/url_constants.h" #include "content/public/browser/browser_thread.h" #include "content/public/browser/notification_source.h" -#include "googleurl/src/gurl.h" #include "grit/chromium_strings.h" #include "grit/generated_resources.h" #include "third_party/skia/include/core/SkBitmap.h" @@ -49,6 +48,7 @@ #include "ui/gfx/favicon_size.h" #include "ui/gfx/icon_util.h" #include "ui/gfx/image/image_family.h" +#include "url/gurl.h" using content::BrowserThread; diff --git a/chrome/browser/logging_chrome_browsertest.cc b/chrome/browser/logging_chrome_browsertest.cc index d45b3f2..d3211fb 100644 --- a/chrome/browser/logging_chrome_browsertest.cc +++ b/chrome/browser/logging_chrome_browsertest.cc @@ -5,17 +5,17 @@ #include "base/command_line.h" #include "base/environment.h" #include "chrome/common/chrome_switches.h" -#include "chrome/common/url_constants.h" #include "chrome/common/env_vars.h" #include "chrome/common/logging_chrome.h" +#include "chrome/common/url_constants.h" #include "chrome/test/base/in_process_browser_test.h" #include "chrome/test/base/ui_test_utils.h" #include "content/public/browser/notification_service.h" #include "content/public/browser/notification_types.h" #include "content/public/browser/render_process_host.h" #include "content/public/browser/web_contents.h" -#include "googleurl/src/gurl.h" #include "testing/gtest/include/gtest/gtest.h" +#include "url/gurl.h" using content::RenderProcessHost; diff --git a/chrome/browser/managed_mode/managed_mode_interstitial.h b/chrome/browser/managed_mode/managed_mode_interstitial.h index ece0f31..656727c 100644 --- a/chrome/browser/managed_mode/managed_mode_interstitial.h +++ b/chrome/browser/managed_mode/managed_mode_interstitial.h @@ -11,7 +11,7 @@ #include "base/compiler_specific.h" #include "base/memory/weak_ptr.h" #include "content/public/browser/interstitial_page_delegate.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" namespace content { class InterstitialPage; diff --git a/chrome/browser/managed_mode/managed_mode_url_filter.cc b/chrome/browser/managed_mode/managed_mode_url_filter.cc index 85be975..189773e 100644 --- a/chrome/browser/managed_mode/managed_mode_url_filter.cc +++ b/chrome/browser/managed_mode/managed_mode_url_filter.cc @@ -15,7 +15,7 @@ #include "base/threading/sequenced_worker_pool.h" #include "content/public/browser/browser_thread.h" #include "extensions/common/matcher/url_matcher.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" using content::BrowserThread; using extensions::URLMatcher; diff --git a/chrome/browser/managed_mode/managed_mode_url_filter_unittest.cc b/chrome/browser/managed_mode/managed_mode_url_filter_unittest.cc index f5ed8c5..4eaa308 100644 --- a/chrome/browser/managed_mode/managed_mode_url_filter_unittest.cc +++ b/chrome/browser/managed_mode/managed_mode_url_filter_unittest.cc @@ -7,8 +7,8 @@ #include "base/message_loop.h" #include "base/run_loop.h" #include "chrome/browser/managed_mode/managed_mode_url_filter.h" -#include "googleurl/src/gurl.h" #include "testing/gtest/include/gtest/gtest.h" +#include "url/gurl.h" class ManagedModeURLFilterTest : public ::testing::Test, public ManagedModeURLFilter::Observer { diff --git a/chrome/browser/media/media_stream_infobar_delegate.cc b/chrome/browser/media/media_stream_infobar_delegate.cc index 403ca77..36bfa97 100644 --- a/chrome/browser/media/media_stream_infobar_delegate.cc +++ b/chrome/browser/media/media_stream_infobar_delegate.cc @@ -11,10 +11,10 @@ #include "chrome/browser/infobars/infobar_service.h" #include "chrome/common/url_constants.h" #include "content/public/browser/web_contents.h" -#include "googleurl/src/gurl.h" #include "grit/generated_resources.h" #include "grit/theme_resources.h" #include "ui/base/l10n/l10n_util.h" +#include "url/gurl.h" namespace { diff --git a/chrome/browser/media_galleries/fileapi/native_media_file_util.cc b/chrome/browser/media_galleries/fileapi/native_media_file_util.cc index fc2f472..73704eb 100644 --- a/chrome/browser/media_galleries/fileapi/native_media_file_util.cc +++ b/chrome/browser/media_galleries/fileapi/native_media_file_util.cc @@ -15,8 +15,8 @@ #include "chrome/browser/media_galleries/fileapi/media_file_system_mount_point_provider.h" #include "chrome/browser/media_galleries/fileapi/media_path_filter.h" #include "content/public/browser/browser_thread.h" -#include "googleurl/src/gurl.h" #include "net/base/mime_sniffer.h" +#include "url/gurl.h" #include "webkit/browser/fileapi/file_system_context.h" #include "webkit/browser/fileapi/file_system_operation_context.h" #include "webkit/browser/fileapi/file_system_task_runners.h" diff --git a/chrome/browser/metrics/metrics_log.cc b/chrome/browser/metrics/metrics_log.cc index ea640c7..bc8a7e7 100644 --- a/chrome/browser/metrics/metrics_log.cc +++ b/chrome/browser/metrics/metrics_log.cc @@ -46,9 +46,9 @@ #include "device/bluetooth/bluetooth_adapter.h" #include "device/bluetooth/bluetooth_adapter_factory.h" #include "device/bluetooth/bluetooth_device.h" -#include "googleurl/src/gurl.h" #include "gpu/config/gpu_info.h" #include "ui/gfx/screen.h" +#include "url/gurl.h" #include "webkit/plugins/webplugininfo.h" #if defined(OS_ANDROID) diff --git a/chrome/browser/metrics/metrics_log_unittest.cc b/chrome/browser/metrics/metrics_log_unittest.cc index c41a8ec..a319880 100644 --- a/chrome/browser/metrics/metrics_log_unittest.cc +++ b/chrome/browser/metrics/metrics_log_unittest.cc @@ -25,9 +25,9 @@ #include "chrome/installer/util/google_update_settings.h" #include "content/public/browser/browser_thread.h" #include "content/public/test/test_utils.h" -#include "googleurl/src/gurl.h" #include "testing/gtest/include/gtest/gtest.h" #include "ui/gfx/size.h" +#include "url/gurl.h" #include "webkit/plugins/webplugininfo.h" #if defined(OS_CHROMEOS) diff --git a/chrome/browser/metrics/metrics_service_browsertest.cc b/chrome/browser/metrics/metrics_service_browsertest.cc index 7545615..228dbd3 100644 --- a/chrome/browser/metrics/metrics_service_browsertest.cc +++ b/chrome/browser/metrics/metrics_service_browsertest.cc @@ -21,9 +21,9 @@ #include "chrome/test/base/ui_test_utils.h" #include "content/public/browser/notification_service.h" #include "content/public/browser/notification_types.h" -#include "googleurl/src/gurl.h" #include "net/base/net_util.h" #include "ui/base/window_open_disposition.h" +#include "url/gurl.h" class MetricsServiceBrowserTest : public InProcessBrowserTest { public: diff --git a/chrome/browser/metrics/variations/variations_service.cc b/chrome/browser/metrics/variations/variations_service.cc index 2b1bb3b..614290c 100644 --- a/chrome/browser/metrics/variations/variations_service.cc +++ b/chrome/browser/metrics/variations/variations_service.cc @@ -24,7 +24,6 @@ #include "chrome/common/pref_names.h" #include "content/public/browser/browser_thread.h" #include "content/public/common/url_fetcher.h" -#include "googleurl/src/gurl.h" #include "net/base/load_flags.h" #include "net/base/net_errors.h" #include "net/base/network_change_notifier.h" @@ -34,6 +33,7 @@ #include "net/http/http_util.h" #include "net/url_request/url_fetcher.h" #include "net/url_request/url_request_status.h" +#include "url/gurl.h" #if defined(OS_CHROMEOS) #include "chrome/browser/chromeos/settings/cros_settings.h" diff --git a/chrome/browser/metrics/variations/variations_service.h b/chrome/browser/metrics/variations/variations_service.h index 17b6777..9275786 100644 --- a/chrome/browser/metrics/variations/variations_service.h +++ b/chrome/browser/metrics/variations/variations_service.h @@ -17,8 +17,8 @@ #include "chrome/browser/metrics/variations/variations_request_scheduler.h" #include "chrome/browser/web_resource/resource_request_allowed_notifier.h" #include "chrome/common/chrome_version_info.h" -#include "googleurl/src/gurl.h" #include "net/url_request/url_fetcher_delegate.h" +#include "url/gurl.h" #if defined(OS_WIN) #include "chrome/browser/metrics/variations/variations_registry_syncer_win.h" diff --git a/chrome/browser/metro_viewer/chrome_metro_viewer_process_host_aurawin.cc b/chrome/browser/metro_viewer/chrome_metro_viewer_process_host_aurawin.cc index 6e77c6f..3518726 100644 --- a/chrome/browser/metro_viewer/chrome_metro_viewer_process_host_aurawin.cc +++ b/chrome/browser/metro_viewer/chrome_metro_viewer_process_host_aurawin.cc @@ -22,9 +22,9 @@ #include "content/public/browser/notification_service.h" #include "content/public/browser/page_navigator.h" #include "content/public/browser/web_contents.h" -#include "googleurl/src/gurl.h" #include "ui/aura/remote_root_window_host_win.h" #include "ui/surface/accelerated_surface_win.h" +#include "url/gurl.h" namespace { diff --git a/chrome/browser/nacl_host/nacl_browser.cc b/chrome/browser/nacl_host/nacl_browser.cc index 832ebee..9cf4bcd 100644 --- a/chrome/browser/nacl_host/nacl_browser.cc +++ b/chrome/browser/nacl_host/nacl_browser.cc @@ -19,7 +19,7 @@ #include "chrome/common/chrome_switches.h" #include "content/public/browser/browser_thread.h" #include "extensions/common/url_pattern.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" namespace { diff --git a/chrome/browser/nacl_host/nacl_host_message_filter.cc b/chrome/browser/nacl_host/nacl_host_message_filter.cc index 761fac3..1cb2167 100644 --- a/chrome/browser/nacl_host/nacl_host_message_filter.cc +++ b/chrome/browser/nacl_host/nacl_host_message_filter.cc @@ -16,9 +16,9 @@ #include "chrome/common/extensions/extension.h" #include "chrome/common/nacl_host_messages.h" #include "extensions/common/constants.h" -#include "googleurl/src/gurl.h" #include "net/url_request/url_request_context.h" #include "net/url_request/url_request_context_getter.h" +#include "url/gurl.h" static base::FilePath GetManifestPath( ExtensionInfoMap* extension_info_map, const std::string& manifest) { diff --git a/chrome/browser/nacl_host/nacl_infobar.cc b/chrome/browser/nacl_host/nacl_infobar.cc index 7583c22..e9c33d4 100644 --- a/chrome/browser/nacl_host/nacl_infobar.cc +++ b/chrome/browser/nacl_host/nacl_infobar.cc @@ -11,10 +11,10 @@ #include "content/public/browser/browser_thread.h" #include "content/public/browser/render_view_host.h" #include "content/public/browser/web_contents.h" -#include "googleurl/src/gurl.h" #include "grit/generated_resources.h" #include "ppapi/c/private/ppb_nacl_private.h" #include "ui/base/l10n/l10n_util.h" +#include "url/gurl.h" using content::BrowserThread; using content::RenderViewHost; diff --git a/chrome/browser/nacl_host/nacl_process_host.h b/chrome/browser/nacl_host/nacl_process_host.h index 4ac8829..4496f92 100644 --- a/chrome/browser/nacl_host/nacl_process_host.h +++ b/chrome/browser/nacl_host/nacl_process_host.h @@ -16,10 +16,10 @@ #include "chrome/common/nacl_types.h" #include "content/public/browser/browser_child_process_host_delegate.h" #include "content/public/browser/browser_child_process_host_iterator.h" -#include "googleurl/src/gurl.h" #include "ipc/ipc_channel_handle.h" #include "net/socket/tcp_listen_socket.h" #include "ppapi/shared_impl/ppapi_permissions.h" +#include "url/gurl.h" class NaClHostMessageFilter; class CommandLine; diff --git a/chrome/browser/net/connection_tester.h b/chrome/browser/net/connection_tester.h index d25c266b..df1bf34 100644 --- a/chrome/browser/net/connection_tester.h +++ b/chrome/browser/net/connection_tester.h @@ -9,8 +9,8 @@ #include "base/basictypes.h" #include "base/memory/scoped_ptr.h" -#include "googleurl/src/gurl.h" #include "net/base/completion_callback.h" +#include "url/gurl.h" namespace net { class NetLog; diff --git a/chrome/browser/net/evicted_domain_cookie_counter_unittest.cc b/chrome/browser/net/evicted_domain_cookie_counter_unittest.cc index 257fe26..ca2597d 100644 --- a/chrome/browser/net/evicted_domain_cookie_counter_unittest.cc +++ b/chrome/browser/net/evicted_domain_cookie_counter_unittest.cc @@ -11,10 +11,10 @@ #include "base/strings/string_number_conversions.h" #include "base/time/time.h" #include "chrome/browser/net/evicted_domain_cookie_counter.h" -#include "googleurl/src/gurl.h" #include "net/cookies/canonical_cookie.h" #include "net/cookies/cookie_monster.h" #include "testing/gtest/include/gtest/gtest.h" +#include "url/gurl.h" namespace chrome_browser_net { diff --git a/chrome/browser/net/ftp_browsertest.cc b/chrome/browser/net/ftp_browsertest.cc index 283593e..50b3a6c 100644 --- a/chrome/browser/net/ftp_browsertest.cc +++ b/chrome/browser/net/ftp_browsertest.cc @@ -4,9 +4,9 @@ #include "chrome/test/base/in_process_browser_test.h" #include "chrome/test/base/ui_test_utils.h" -#include "googleurl/src/gurl.h" #include "net/test/spawned_test_server/spawned_test_server.h" #include "testing/gtest/include/gtest/gtest.h" +#include "url/gurl.h" class FtpBrowserTest : public InProcessBrowserTest { public: diff --git a/chrome/browser/net/gaia/gaia_oauth_fetcher.h b/chrome/browser/net/gaia/gaia_oauth_fetcher.h index 46389ca..9228cd6 100644 --- a/chrome/browser/net/gaia/gaia_oauth_fetcher.h +++ b/chrome/browser/net/gaia/gaia_oauth_fetcher.h @@ -10,8 +10,8 @@ #include "base/memory/scoped_ptr.h" #include "google_apis/gaia/google_service_auth_error.h" -#include "googleurl/src/gurl.h" #include "net/url_request/url_fetcher_delegate.h" +#include "url/gurl.h" class GaiaOAuthConsumer; diff --git a/chrome/browser/net/gaia/gaia_oauth_fetcher_unittest.cc b/chrome/browser/net/gaia/gaia_oauth_fetcher_unittest.cc index 75e9d29..284d34b 100644 --- a/chrome/browser/net/gaia/gaia_oauth_fetcher_unittest.cc +++ b/chrome/browser/net/gaia/gaia_oauth_fetcher_unittest.cc @@ -15,13 +15,13 @@ #include "google_apis/gaia/gaia_constants.h" #include "google_apis/gaia/gaia_urls.h" #include "google_apis/gaia/google_service_auth_error.h" -#include "googleurl/src/gurl.h" #include "net/base/net_errors.h" #include "net/http/http_status_code.h" #include "net/url_request/test_url_fetcher_factory.h" #include "net/url_request/url_request_status.h" #include "testing/gmock/include/gmock/gmock.h" #include "testing/gtest/include/gtest/gtest.h" +#include "url/gurl.h" using ::testing::_; diff --git a/chrome/browser/net/http_server_properties_manager_unittest.cc b/chrome/browser/net/http_server_properties_manager_unittest.cc index 5ce5584..5be9d96 100644 --- a/chrome/browser/net/http_server_properties_manager_unittest.cc +++ b/chrome/browser/net/http_server_properties_manager_unittest.cc @@ -11,9 +11,9 @@ #include "base/values.h" #include "chrome/common/pref_names.h" #include "content/public/test/test_browser_thread.h" -#include "googleurl/src/gurl.h" #include "testing/gmock/include/gmock/gmock.h" #include "testing/gtest/include/gtest/gtest.h" +#include "url/gurl.h" namespace chrome_browser_net { diff --git a/chrome/browser/net/load_timing_browsertest.cc b/chrome/browser/net/load_timing_browsertest.cc index b42bbf8..ac6e2a6 100644 --- a/chrome/browser/net/load_timing_browsertest.cc +++ b/chrome/browser/net/load_timing_browsertest.cc @@ -20,12 +20,12 @@ #include "chrome/test/base/ui_test_utils.h" #include "content/public/browser/browser_thread.h" #include "content/public/test/browser_test_utils.h" -#include "googleurl/src/gurl.h" #include "net/base/load_timing_info.h" #include "net/test/spawned_test_server/spawned_test_server.h" #include "net/url_request/url_request_file_job.h" #include "net/url_request/url_request_filter.h" #include "net/url_request/url_request_job_factory.h" +#include "url/gurl.h" // This file tests that net::LoadTimingInfo is correctly hooked up to the // NavigationTiming API. It depends on behavior in a large number of files diff --git a/chrome/browser/net/network_stats.cc b/chrome/browser/net/network_stats.cc index a299d52..5ea2ed2 100644 --- a/chrome/browser/net/network_stats.cc +++ b/chrome/browser/net/network_stats.cc @@ -16,7 +16,6 @@ #include "base/tuple.h" #include "chrome/common/chrome_version_info.h" #include "content/public/browser/browser_thread.h" -#include "googleurl/src/gurl.h" #include "net/base/net_errors.h" #include "net/base/net_util.h" #include "net/base/network_change_notifier.h" @@ -25,6 +24,7 @@ #include "net/proxy/proxy_service.h" #include "net/udp/udp_client_socket.h" #include "net/udp/udp_server_socket.h" +#include "url/gurl.h" using content::BrowserThread; diff --git a/chrome/browser/net/referrer.h b/chrome/browser/net/referrer.h index dbf821d..fb5d6d2 100644 --- a/chrome/browser/net/referrer.h +++ b/chrome/browser/net/referrer.h @@ -19,8 +19,8 @@ #include "base/basictypes.h" #include "base/time/time.h" -#include "googleurl/src/gurl.h" #include "net/base/host_port_pair.h" +#include "url/gurl.h" namespace base { class Value; diff --git a/chrome/browser/net/resource_prefetch_predictor_observer.cc b/chrome/browser/net/resource_prefetch_predictor_observer.cc index c193f18..1ce3f8d 100644 --- a/chrome/browser/net/resource_prefetch_predictor_observer.cc +++ b/chrome/browser/net/resource_prefetch_predictor_observer.cc @@ -9,8 +9,8 @@ #include "base/metrics/histogram.h" #include "content/public/browser/browser_thread.h" #include "content/public/browser/resource_request_info.h" -#include "googleurl/src/gurl.h" #include "net/url_request/url_request.h" +#include "url/gurl.h" using content::BrowserThread; using predictors::ResourcePrefetchPredictor; diff --git a/chrome/browser/net/sqlite_server_bound_cert_store.cc b/chrome/browser/net/sqlite_server_bound_cert_store.cc index cf2bca5..fe28561 100644 --- a/chrome/browser/net/sqlite_server_bound_cert_store.cc +++ b/chrome/browser/net/sqlite_server_bound_cert_store.cc @@ -19,7 +19,6 @@ #include "base/threading/thread_restrictions.h" #include "chrome/browser/diagnostics/sqlite_diagnostics.h" #include "content/public/browser/browser_thread.h" -#include "googleurl/src/gurl.h" #include "net/cert/x509_certificate.h" #include "net/cookies/cookie_util.h" #include "net/ssl/ssl_client_cert_type.h" @@ -28,6 +27,7 @@ #include "sql/statement.h" #include "sql/transaction.h" #include "third_party/sqlite/sqlite3.h" +#include "url/gurl.h" #include "webkit/browser/quota/special_storage_policy.h" using content::BrowserThread; diff --git a/chrome/browser/net/timed_cache.cc b/chrome/browser/net/timed_cache.cc index e88fd27..2d0dd94 100644 --- a/chrome/browser/net/timed_cache.cc +++ b/chrome/browser/net/timed_cache.cc @@ -4,7 +4,7 @@ #include "chrome/browser/net/timed_cache.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" namespace chrome_browser_net { diff --git a/chrome/browser/net/url_fixer_upper.cc b/chrome/browser/net/url_fixer_upper.cc index fc68d2a..6c82ba4 100644 --- a/chrome/browser/net/url_fixer_upper.cc +++ b/chrome/browser/net/url_fixer_upper.cc @@ -14,12 +14,12 @@ #include "base/strings/string_util.h" #include "base/strings/utf_string_conversions.h" #include "chrome/common/url_constants.h" -#include "googleurl/src/url_file.h" -#include "googleurl/src/url_parse.h" -#include "googleurl/src/url_util.h" #include "net/base/escape.h" #include "net/base/net_util.h" #include "net/base/registry_controlled_domains/registry_controlled_domain.h" +#include "url/url_file.h" +#include "url/url_parse.h" +#include "url/url_util.h" const char* URLFixerUpper::home_directory_override = NULL; diff --git a/chrome/browser/net/url_fixer_upper.h b/chrome/browser/net/url_fixer_upper.h index eaf89c8..57ed512 100644 --- a/chrome/browser/net/url_fixer_upper.h +++ b/chrome/browser/net/url_fixer_upper.h @@ -8,7 +8,7 @@ #include <string> #include "base/strings/string16.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" namespace base { class FilePath; diff --git a/chrome/browser/net/url_fixer_upper_unittest.cc b/chrome/browser/net/url_fixer_upper_unittest.cc index 3b4fd1d..5dc335c 100644 --- a/chrome/browser/net/url_fixer_upper_unittest.cc +++ b/chrome/browser/net/url_fixer_upper_unittest.cc @@ -11,10 +11,10 @@ #include "base/strings/utf_string_conversions.h" #include "chrome/browser/net/url_fixer_upper.h" #include "chrome/common/chrome_paths.h" -#include "googleurl/src/gurl.h" -#include "googleurl/src/url_parse.h" #include "net/base/net_util.h" #include "testing/gtest/include/gtest/gtest.h" +#include "url/gurl.h" +#include "url/url_parse.h" namespace { class URLFixerUpperTest : public testing::Test { diff --git a/chrome/browser/net/url_info.h b/chrome/browser/net/url_info.h index 9cd60fd..e8e3408 100644 --- a/chrome/browser/net/url_info.h +++ b/chrome/browser/net/url_info.h @@ -20,8 +20,8 @@ #include <vector> #include "base/time/time.h" -#include "googleurl/src/gurl.h" #include "net/base/host_port_pair.h" +#include "url/gurl.h" namespace chrome_browser_net { diff --git a/chrome/browser/notifications/balloon_collection_base.cc b/chrome/browser/notifications/balloon_collection_base.cc index c97c14d6..c748739 100644 --- a/chrome/browser/notifications/balloon_collection_base.cc +++ b/chrome/browser/notifications/balloon_collection_base.cc @@ -7,7 +7,7 @@ #include "base/stl_util.h" #include "chrome/browser/notifications/balloon.h" #include "chrome/browser/notifications/notification.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" BalloonCollectionBase::BalloonCollectionBase() { } diff --git a/chrome/browser/notifications/desktop_notification_service.h b/chrome/browser/notifications/desktop_notification_service.h index bad1d6f..7bc271c 100644 --- a/chrome/browser/notifications/desktop_notification_service.h +++ b/chrome/browser/notifications/desktop_notification_service.h @@ -18,10 +18,10 @@ #include "components/browser_context_keyed_service/browser_context_keyed_service.h" #include "content/public/browser/notification_observer.h" #include "content/public/browser/notification_registrar.h" -#include "googleurl/src/gurl.h" #include "third_party/WebKit/public/web/WebNotificationPresenter.h" #include "third_party/WebKit/public/web/WebTextDirection.h" #include "ui/message_center/notifier_settings.h" +#include "url/gurl.h" class ContentSettingsPattern; class Notification; diff --git a/chrome/browser/notifications/notification.h b/chrome/browser/notifications/notification.h index 05c3fff..3e4685c 100644 --- a/chrome/browser/notifications/notification.h +++ b/chrome/browser/notifications/notification.h @@ -12,11 +12,11 @@ #include "base/strings/string16.h" #include "base/values.h" #include "chrome/browser/notifications/notification_delegate.h" -#include "googleurl/src/gurl.h" #include "third_party/WebKit/public/web/WebTextDirection.h" #include "ui/gfx/image/image.h" #include "ui/message_center/notification.h" #include "ui/message_center/notification_types.h" +#include "url/gurl.h" // Representation of a notification to be shown to the user. // On non-Ash platforms these are rendered as HTML, sometimes described by a diff --git a/chrome/browser/notifications/notification_browsertest.cc b/chrome/browser/notifications/notification_browsertest.cc index 026ea9b..fe5982a 100644 --- a/chrome/browser/notifications/notification_browsertest.cc +++ b/chrome/browser/notifications/notification_browsertest.cc @@ -40,7 +40,6 @@ #include "content/public/browser/web_contents.h" #include "content/public/test/browser_test_utils.h" #include "content/public/test/test_utils.h" -#include "googleurl/src/gurl.h" #include "net/base/net_util.h" #include "net/test/embedded_test_server/embedded_test_server.h" #include "testing/gtest/include/gtest/gtest.h" @@ -49,6 +48,7 @@ #include "ui/message_center/message_center_observer.h" #include "ui/message_center/message_center_switches.h" #include "ui/message_center/message_center_util.h" +#include "url/gurl.h" // TODO(kbr): remove: http://crbug.com/222296 #if defined(OS_MACOSX) diff --git a/chrome/browser/notifications/sync_notifier/chrome_notifier_service.cc b/chrome/browser/notifications/sync_notifier/chrome_notifier_service.cc index ff4c5b4..7910c4c 100644 --- a/chrome/browser/notifications/sync_notifier/chrome_notifier_service.cc +++ b/chrome/browser/notifications/sync_notifier/chrome_notifier_service.cc @@ -11,13 +11,13 @@ #include "chrome/browser/notifications/notification.h" #include "chrome/browser/notifications/notification_ui_manager.h" #include "chrome/browser/profiles/profile.h" -#include "googleurl/src/gurl.h" #include "sync/api/sync_change.h" #include "sync/api/sync_change_processor.h" #include "sync/api/sync_error_factory.h" #include "sync/protocol/sync.pb.h" #include "sync/protocol/synced_notification_specifics.pb.h" #include "third_party/WebKit/public/web/WebTextDirection.h" +#include "url/gurl.h" namespace notifier { diff --git a/chrome/browser/notifications/sync_notifier/notification_bitmap_fetcher.h b/chrome/browser/notifications/sync_notifier/notification_bitmap_fetcher.h index e8c17cb..7a268e6 100644 --- a/chrome/browser/notifications/sync_notifier/notification_bitmap_fetcher.h +++ b/chrome/browser/notifications/sync_notifier/notification_bitmap_fetcher.h @@ -7,9 +7,9 @@ #include "base/memory/scoped_ptr.h" #include "chrome/browser/image_decoder.h" -#include "googleurl/src/gurl.h" #include "net/url_request/url_fetcher_delegate.h" #include "third_party/skia/include/core/SkBitmap.h" +#include "url/gurl.h" namespace net { class URLFetcher; diff --git a/chrome/browser/notifications/sync_notifier/synced_notification.h b/chrome/browser/notifications/sync_notifier/synced_notification.h index 70c15c2..52f37ee 100644 --- a/chrome/browser/notifications/sync_notifier/synced_notification.h +++ b/chrome/browser/notifications/sync_notifier/synced_notification.h @@ -15,10 +15,10 @@ #include "base/memory/scoped_ptr.h" #include "base/memory/scoped_vector.h" #include "chrome/browser/notifications/sync_notifier/notification_bitmap_fetcher.h" -#include "googleurl/src/gurl.h" #include "sync/api/sync_data.h" #include "sync/protocol/sync.pb.h" #include "ui/gfx/image/image.h" +#include "url/gurl.h" namespace sync_pb { class SyncedNotificationSpecifics; diff --git a/chrome/browser/page_cycler/page_cycler_browsertest.cc b/chrome/browser/page_cycler/page_cycler_browsertest.cc index c31f1e9..c4d8650 100644 --- a/chrome/browser/page_cycler/page_cycler_browsertest.cc +++ b/chrome/browser/page_cycler/page_cycler_browsertest.cc @@ -25,7 +25,7 @@ #include "content/public/browser/notification_service.h" #include "content/public/common/content_switches.h" #include "content/public/common/url_constants.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" // TODO(kbr): remove: http://crbug.com/222296 #if defined(OS_MACOSX) diff --git a/chrome/browser/pepper_broker_infobar_delegate.h b/chrome/browser/pepper_broker_infobar_delegate.h index 9b5bdb3..fa5a936 100644 --- a/chrome/browser/pepper_broker_infobar_delegate.h +++ b/chrome/browser/pepper_broker_infobar_delegate.h @@ -8,7 +8,7 @@ #include "base/callback.h" #include "base/files/file_path.h" #include "chrome/browser/infobars/confirm_infobar_delegate.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" class HostContentSettingsMap; class InfoBarService; diff --git a/chrome/browser/pepper_flash_settings_manager.cc b/chrome/browser/pepper_flash_settings_manager.cc index 5f0e953..c6454bd 100644 --- a/chrome/browser/pepper_flash_settings_manager.cc +++ b/chrome/browser/pepper_flash_settings_manager.cc @@ -24,10 +24,10 @@ #include "content/public/browser/pepper_flash_settings_helper.h" #include "content/public/browser/plugin_service.h" #include "content/public/common/content_constants.h" -#include "googleurl/src/gurl.h" #include "ipc/ipc_channel.h" #include "ipc/ipc_listener.h" #include "ppapi/proxy/ppapi_messages.h" +#include "url/gurl.h" #include "webkit/plugins/plugin_constants.h" #include "webkit/plugins/webplugininfo.h" diff --git a/chrome/browser/platform_util_chromeos.cc b/chrome/browser/platform_util_chromeos.cc index 1d68cab..b593139 100644 --- a/chrome/browser/platform_util_chromeos.cc +++ b/chrome/browser/platform_util_chromeos.cc @@ -12,7 +12,7 @@ #include "chrome/browser/ui/host_desktop.h" #include "chrome/browser/ui/tabs/tab_strip_model.h" #include "content/public/browser/browser_thread.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" using content::BrowserThread; diff --git a/chrome/browser/platform_util_linux.cc b/chrome/browser/platform_util_linux.cc index 5bae77f..9ac22d7 100644 --- a/chrome/browser/platform_util_linux.cc +++ b/chrome/browser/platform_util_linux.cc @@ -9,7 +9,7 @@ #include "base/process_util.h" #include "base/strings/utf_string_conversions.h" #include "content/public/browser/browser_thread.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" using content::BrowserThread; diff --git a/chrome/browser/platform_util_mac.mm b/chrome/browser/platform_util_mac.mm index 5a97ecf..fad64e6 100644 --- a/chrome/browser/platform_util_mac.mm +++ b/chrome/browser/platform_util_mac.mm @@ -13,10 +13,10 @@ #include "base/mac/mac_logging.h" #include "base/mac/scoped_aedesc.h" #include "base/strings/sys_string_conversions.h" -#include "googleurl/src/gurl.h" #include "grit/generated_resources.h" #include "ui/base/l10n/l10n_util.h" #include "ui/base/l10n/l10n_util_mac.h" +#include "url/gurl.h" namespace platform_util { diff --git a/chrome/browser/platform_util_win.cc b/chrome/browser/platform_util_win.cc index 90c02c0..2a6a8d7 100644 --- a/chrome/browser/platform_util_win.cc +++ b/chrome/browser/platform_util_win.cc @@ -20,9 +20,9 @@ #include "base/win/scoped_comptr.h" #include "base/win/windows_version.h" #include "content/public/browser/browser_thread.h" -#include "googleurl/src/gurl.h" #include "ui/base/win/shell.h" #include "ui/gfx/native_widget_types.h" +#include "url/gurl.h" using content::BrowserThread; diff --git a/chrome/browser/plugins/chrome_plugin_service_filter.h b/chrome/browser/plugins/chrome_plugin_service_filter.h index 2ef01d4..5b61c3a 100644 --- a/chrome/browser/plugins/chrome_plugin_service_filter.h +++ b/chrome/browser/plugins/chrome_plugin_service_filter.h @@ -17,7 +17,7 @@ #include "content/public/browser/notification_observer.h" #include "content/public/browser/notification_registrar.h" #include "content/public/browser/plugin_service_filter.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" #include "webkit/plugins/webplugininfo.h" class PluginPrefs; diff --git a/chrome/browser/plugins/plugin_finder.cc b/chrome/browser/plugins/plugin_finder.cc index f32efcb..9dbfa30 100644 --- a/chrome/browser/plugins/plugin_finder.cc +++ b/chrome/browser/plugins/plugin_finder.cc @@ -18,9 +18,9 @@ #include "chrome/common/pref_names.h" #include "content/public/browser/browser_thread.h" #include "content/public/browser/plugin_service.h" -#include "googleurl/src/gurl.h" #include "grit/browser_resources.h" #include "ui/base/resource/resource_bundle.h" +#include "url/gurl.h" #if defined(ENABLE_PLUGIN_INSTALLATION) #include "chrome/browser/plugins/plugin_installer.h" diff --git a/chrome/browser/plugins/plugin_info_message_filter.cc b/chrome/browser/plugins/plugin_info_message_filter.cc index b75686c..cb19888 100644 --- a/chrome/browser/plugins/plugin_info_message_filter.cc +++ b/chrome/browser/plugins/plugin_info_message_filter.cc @@ -22,7 +22,7 @@ #include "content/public/browser/browser_thread.h" #include "content/public/browser/plugin_service.h" #include "content/public/browser/plugin_service_filter.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" #include "webkit/plugins/npapi/plugin_list.h" #include "widevine_cdm_version.h" // In SHARED_INTERMEDIATE_DIR. diff --git a/chrome/browser/plugins/plugin_infobar_delegates.h b/chrome/browser/plugins/plugin_infobar_delegates.h index fcb261f..5e4cb31 100644 --- a/chrome/browser/plugins/plugin_infobar_delegates.h +++ b/chrome/browser/plugins/plugin_infobar_delegates.h @@ -7,7 +7,7 @@ #include "base/callback.h" #include "chrome/browser/infobars/confirm_infobar_delegate.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" #if defined(ENABLE_PLUGIN_INSTALLATION) #include "chrome/browser/plugins/plugin_installer_observer.h" diff --git a/chrome/browser/plugins/plugin_installer.h b/chrome/browser/plugins/plugin_installer.h index 196007e..36a4261 100644 --- a/chrome/browser/plugins/plugin_installer.h +++ b/chrome/browser/plugins/plugin_installer.h @@ -10,8 +10,8 @@ #include "base/version.h" #include "chrome/browser/plugins/plugin_metadata.h" #include "content/public/browser/download_item.h" -#include "googleurl/src/gurl.h" #include "net/base/net_errors.h" +#include "url/gurl.h" class PluginInstallerObserver; class WeakPluginInstallerObserver; diff --git a/chrome/browser/plugins/plugin_metadata.h b/chrome/browser/plugins/plugin_metadata.h index b457e6a..69019a7 100644 --- a/chrome/browser/plugins/plugin_metadata.h +++ b/chrome/browser/plugins/plugin_metadata.h @@ -10,7 +10,7 @@ #include "base/memory/scoped_ptr.h" #include "base/strings/string16.h" #include "base/version.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" namespace webkit { struct WebPluginInfo; diff --git a/chrome/browser/plugins/plugins_resource_service.cc b/chrome/browser/plugins/plugins_resource_service.cc index 348ad13..e8ce1ab 100644 --- a/chrome/browser/plugins/plugins_resource_service.cc +++ b/chrome/browser/plugins/plugins_resource_service.cc @@ -10,7 +10,7 @@ #include "chrome/browser/plugins/plugin_finder.h" #include "chrome/common/chrome_switches.h" #include "chrome/common/pref_names.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" namespace { diff --git a/chrome/browser/policy/cloud/cloud_policy_browsertest.cc b/chrome/browser/policy/cloud/cloud_policy_browsertest.cc index 9f6e7f4..0327d98 100644 --- a/chrome/browser/policy/cloud/cloud_policy_browsertest.cc +++ b/chrome/browser/policy/cloud/cloud_policy_browsertest.cc @@ -31,12 +31,12 @@ #include "content/public/browser/notification_service.h" #include "content/public/browser/notification_source.h" #include "content/public/test/test_utils.h" -#include "googleurl/src/gurl.h" #include "policy/policy_constants.h" #include "policy/proto/chrome_settings.pb.h" #include "policy/proto/cloud_policy.pb.h" #include "testing/gmock/include/gmock/gmock.h" #include "testing/gtest/include/gtest/gtest.h" +#include "url/gurl.h" #if defined(OS_CHROMEOS) #include "chrome/browser/chromeos/login/user_manager.h" diff --git a/chrome/browser/policy/cloud/component_cloud_policy_store.cc b/chrome/browser/policy/cloud/component_cloud_policy_store.cc index 57b7b2d..afd627a 100644 --- a/chrome/browser/policy/cloud/component_cloud_policy_store.cc +++ b/chrome/browser/policy/cloud/component_cloud_policy_store.cc @@ -15,7 +15,7 @@ #include "chrome/browser/policy/policy_map.h" #include "chrome/browser/policy/proto/cloud/chrome_extension_policy.pb.h" #include "chrome/browser/policy/proto/cloud/device_management_backend.pb.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" namespace em = enterprise_management; diff --git a/chrome/browser/policy/cloud/component_cloud_policy_updater_unittest.cc b/chrome/browser/policy/cloud/component_cloud_policy_updater_unittest.cc index 6cdecb9..11a73b5 100644 --- a/chrome/browser/policy/cloud/component_cloud_policy_updater_unittest.cc +++ b/chrome/browser/policy/cloud/component_cloud_policy_updater_unittest.cc @@ -21,12 +21,12 @@ #include "chrome/browser/policy/policy_types.h" #include "chrome/browser/policy/proto/cloud/chrome_extension_policy.pb.h" #include "chrome/browser/policy/proto/cloud/device_management_backend.pb.h" -#include "googleurl/src/gurl.h" #include "net/url_request/test_url_fetcher_factory.h" #include "net/url_request/url_fetcher_delegate.h" #include "net/url_request/url_request_context_getter.h" #include "testing/gmock/include/gmock/gmock.h" #include "testing/gtest/include/gtest/gtest.h" +#include "url/gurl.h" namespace em = enterprise_management; diff --git a/chrome/browser/policy/cloud/device_management_service.cc b/chrome/browser/policy/cloud/device_management_service.cc index 2a781b6..2892488 100644 --- a/chrome/browser/policy/cloud/device_management_service.cc +++ b/chrome/browser/policy/cloud/device_management_service.cc @@ -18,7 +18,6 @@ #include "chrome/common/chrome_version_info.h" #include "content/public/browser/browser_thread.h" #include "content/public/common/content_client.h" -#include "googleurl/src/gurl.h" #include "net/base/escape.h" #include "net/base/load_flags.h" #include "net/base/net_errors.h" @@ -32,6 +31,7 @@ #include "net/url_request/url_request_context.h" #include "net/url_request/url_request_context_getter.h" #include "net/url_request/url_request_status.h" +#include "url/gurl.h" #if defined(OS_CHROMEOS) #include "chrome/browser/chromeos/system/statistics_provider.h" diff --git a/chrome/browser/policy/cloud/external_policy_data_updater.cc b/chrome/browser/policy/cloud/external_policy_data_updater.cc index c5675a8..fcac402 100644 --- a/chrome/browser/policy/cloud/external_policy_data_updater.cc +++ b/chrome/browser/policy/cloud/external_policy_data_updater.cc @@ -13,7 +13,6 @@ #include "base/sequenced_task_runner.h" #include "base/sha1.h" #include "base/stl_util.h" -#include "googleurl/src/gurl.h" #include "net/base/backoff_entry.h" #include "net/base/load_flags.h" #include "net/base/net_errors.h" @@ -21,6 +20,7 @@ #include "net/url_request/url_fetcher_delegate.h" #include "net/url_request/url_request_context_getter.h" #include "net/url_request/url_request_status.h" +#include "url/gurl.h" namespace policy { diff --git a/chrome/browser/policy/cloud/external_policy_data_updater_unittest.cc b/chrome/browser/policy/cloud/external_policy_data_updater_unittest.cc index 9f8d61b..57325f8 100644 --- a/chrome/browser/policy/cloud/external_policy_data_updater_unittest.cc +++ b/chrome/browser/policy/cloud/external_policy_data_updater_unittest.cc @@ -13,7 +13,6 @@ #include "base/test/test_pending_task.h" #include "base/test/test_simple_task_runner.h" #include "base/time/time.h" -#include "googleurl/src/gurl.h" #include "net/base/net_errors.h" #include "net/url_request/test_url_fetcher_factory.h" #include "net/url_request/url_fetcher_delegate.h" @@ -21,6 +20,7 @@ #include "net/url_request/url_request_status.h" #include "testing/gmock/include/gmock/gmock.h" #include "testing/gtest/include/gtest/gtest.h" +#include "url/gurl.h" using testing::Mock; using testing::Return; diff --git a/chrome/browser/policy/cloud/test_request_interceptor.cc b/chrome/browser/policy/cloud/test_request_interceptor.cc index b36b63d..9e254a4 100644 --- a/chrome/browser/policy/cloud/test_request_interceptor.cc +++ b/chrome/browser/policy/cloud/test_request_interceptor.cc @@ -13,7 +13,6 @@ #include "content/public/browser/browser_thread.h" #include "content/public/test/test_utils.h" #include "content/test/net/url_request_mock_http_job.h" -#include "googleurl/src/gurl.h" #include "net/base/net_errors.h" #include "net/base/upload_bytes_element_reader.h" #include "net/base/upload_data_stream.h" @@ -22,6 +21,7 @@ #include "net/url_request/url_request_filter.h" #include "net/url_request/url_request_job_factory.h" #include "net/url_request/url_request_test_job.h" +#include "url/gurl.h" namespace em = enterprise_management; diff --git a/chrome/browser/policy/cloud/user_info_fetcher.cc b/chrome/browser/policy/cloud/user_info_fetcher.cc index 4aaed1e..996e442 100644 --- a/chrome/browser/policy/cloud/user_info_fetcher.cc +++ b/chrome/browser/policy/cloud/user_info_fetcher.cc @@ -10,11 +10,11 @@ #include "base/values.h" #include "google_apis/gaia/gaia_urls.h" #include "google_apis/gaia/google_service_auth_error.h" -#include "googleurl/src/gurl.h" #include "net/base/load_flags.h" #include "net/http/http_status_code.h" #include "net/url_request/url_fetcher.h" #include "net/url_request/url_request_status.h" +#include "url/gurl.h" namespace { diff --git a/chrome/browser/policy/configuration_policy_handler.cc b/chrome/browser/policy/configuration_policy_handler.cc index 07120fb..d3e2c89 100644 --- a/chrome/browser/policy/configuration_policy_handler.cc +++ b/chrome/browser/policy/configuration_policy_handler.cc @@ -29,9 +29,9 @@ #include "chrome/common/extensions/extension.h" #include "chrome/common/pref_names.h" #include "content/public/browser/notification_service.h" -#include "googleurl/src/gurl.h" #include "grit/generated_resources.h" #include "policy/policy_constants.h" +#include "url/gurl.h" #if !defined(OS_ANDROID) #include "chrome/browser/policy/policy_path_parser.h" diff --git a/chrome/browser/policy/policy_browsertest.cc b/chrome/browser/policy/policy_browsertest.cc index 7390fbf..f10972e 100644 --- a/chrome/browser/policy/policy_browsertest.cc +++ b/chrome/browser/policy/policy_browsertest.cc @@ -101,7 +101,6 @@ #include "content/public/test/test_utils.h" #include "content/test/net/url_request_failed_job.h" #include "content/test/net/url_request_mock_http_job.h" -#include "googleurl/src/gurl.h" #include "grit/generated_resources.h" #include "net/base/net_errors.h" #include "net/base/net_util.h" @@ -115,6 +114,7 @@ #include "third_party/WebKit/public/web/WebInputEvent.h" #include "ui/base/l10n/l10n_util.h" #include "ui/base/resource/resource_bundle.h" +#include "url/gurl.h" #include "webkit/plugins/npapi/plugin_utils.h" #include "webkit/plugins/plugin_constants.h" #include "webkit/plugins/webplugininfo.h" diff --git a/chrome/browser/policy/policy_prefs_browsertest.cc b/chrome/browser/policy/policy_prefs_browsertest.cc index 01ceece..689b40a 100644 --- a/chrome/browser/policy/policy_prefs_browsertest.cc +++ b/chrome/browser/policy/policy_prefs_browsertest.cc @@ -32,10 +32,10 @@ #include "chrome/test/base/ui_test_utils.h" #include "content/public/browser/web_contents.h" #include "content/public/test/browser_test_utils.h" -#include "googleurl/src/gurl.h" #include "policy/policy_constants.h" #include "testing/gmock/include/gmock/gmock.h" #include "testing/gtest/include/gtest/gtest.h" +#include "url/gurl.h" using testing::AnyNumber; using testing::Return; diff --git a/chrome/browser/policy/test/local_policy_test_server.h b/chrome/browser/policy/test/local_policy_test_server.h index aaf6da0..7dbd2ef 100644 --- a/chrome/browser/policy/test/local_policy_test_server.h +++ b/chrome/browser/policy/test/local_policy_test_server.h @@ -12,8 +12,8 @@ #include "base/files/file_path.h" #include "base/files/scoped_temp_dir.h" #include "base/values.h" -#include "googleurl/src/gurl.h" #include "net/test/spawned_test_server/local_test_server.h" +#include "url/gurl.h" namespace crypto { class RSAPrivateKey; diff --git a/chrome/browser/policy/url_blacklist_manager.cc b/chrome/browser/policy/url_blacklist_manager.cc index dd070b7..66a496e 100644 --- a/chrome/browser/policy/url_blacklist_manager.cc +++ b/chrome/browser/policy/url_blacklist_manager.cc @@ -20,10 +20,10 @@ #include "content/public/browser/notification_source.h" #include "content/public/common/url_constants.h" #include "google_apis/gaia/gaia_urls.h" -#include "googleurl/src/gurl.h" #include "net/base/load_flags.h" #include "net/base/net_util.h" #include "net/url_request/url_request.h" +#include "url/gurl.h" #if !defined(OS_CHROMEOS) #include "chrome/browser/signin/signin_manager.h" diff --git a/chrome/browser/policy/url_blacklist_manager_unittest.cc b/chrome/browser/policy/url_blacklist_manager_unittest.cc index a5afd49..977c659 100644 --- a/chrome/browser/policy/url_blacklist_manager_unittest.cc +++ b/chrome/browser/policy/url_blacklist_manager_unittest.cc @@ -13,10 +13,10 @@ #include "chrome/common/pref_names.h" #include "content/public/test/test_browser_thread.h" #include "google_apis/gaia/gaia_urls.h" -#include "googleurl/src/gurl.h" #include "net/url_request/url_request.h" #include "net/url_request/url_request_test_util.h" #include "testing/gtest/include/gtest/gtest.h" +#include "url/gurl.h" namespace policy { diff --git a/chrome/browser/predictors/autocomplete_action_predictor.h b/chrome/browser/predictors/autocomplete_action_predictor.h index 56adfa8..b1c4f97 100644 --- a/chrome/browser/predictors/autocomplete_action_predictor.h +++ b/chrome/browser/predictors/autocomplete_action_predictor.h @@ -18,7 +18,7 @@ #include "content/public/browser/navigation_controller.h" #include "content/public/browser/notification_observer.h" #include "content/public/browser/notification_registrar.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" struct AutocompleteMatch; class AutocompleteResult; diff --git a/chrome/browser/predictors/autocomplete_action_predictor_table.h b/chrome/browser/predictors/autocomplete_action_predictor_table.h index d6204c6..edde92b 100644 --- a/chrome/browser/predictors/autocomplete_action_predictor_table.h +++ b/chrome/browser/predictors/autocomplete_action_predictor_table.h @@ -10,7 +10,7 @@ #include "base/strings/string16.h" #include "chrome/browser/predictors/predictor_table_base.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" namespace predictors { diff --git a/chrome/browser/predictors/logged_in_predictor_table.h b/chrome/browser/predictors/logged_in_predictor_table.h index 71dc7f0..30d1495 100644 --- a/chrome/browser/predictors/logged_in_predictor_table.h +++ b/chrome/browser/predictors/logged_in_predictor_table.h @@ -10,7 +10,7 @@ #include "base/containers/hash_tables.h" #include "base/time/time.h" #include "chrome/browser/predictors/predictor_table_base.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" namespace sql { class Statement; diff --git a/chrome/browser/predictors/resource_prefetch_common.h b/chrome/browser/predictors/resource_prefetch_common.h index 13f276a..47243dc 100644 --- a/chrome/browser/predictors/resource_prefetch_common.h +++ b/chrome/browser/predictors/resource_prefetch_common.h @@ -6,7 +6,7 @@ #define CHROME_BROWSER_PREDICTORS_RESOURCE_PREFETCH_COMMON_H_ #include "base/time/time.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" class Profile; diff --git a/chrome/browser/predictors/resource_prefetch_predictor.h b/chrome/browser/predictors/resource_prefetch_predictor.h index b0334b2..3776241 100644 --- a/chrome/browser/predictors/resource_prefetch_predictor.h +++ b/chrome/browser/predictors/resource_prefetch_predictor.h @@ -22,7 +22,7 @@ #include "components/browser_context_keyed_service/browser_context_keyed_service.h" #include "content/public/browser/notification_observer.h" #include "content/public/browser/notification_registrar.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" #include "webkit/glue/resource_type.h" class PredictorsHandler; diff --git a/chrome/browser/predictors/resource_prefetch_predictor_tables.h b/chrome/browser/predictors/resource_prefetch_predictor_tables.h index a85132f..f8a965e 100644 --- a/chrome/browser/predictors/resource_prefetch_predictor_tables.h +++ b/chrome/browser/predictors/resource_prefetch_predictor_tables.h @@ -13,7 +13,7 @@ #include "base/time/time.h" #include "chrome/browser/predictors/predictor_table_base.h" #include "chrome/browser/predictors/resource_prefetch_common.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" #include "webkit/glue/resource_type.h" namespace sql { diff --git a/chrome/browser/predictors/resource_prefetcher.h b/chrome/browser/predictors/resource_prefetcher.h index 81e9481..bd77808 100644 --- a/chrome/browser/predictors/resource_prefetcher.h +++ b/chrome/browser/predictors/resource_prefetcher.h @@ -5,8 +5,8 @@ #ifndef CHROME_BROWSER_PREDICTORS_RESOURCE_PREFETCHER_H_ #define CHROME_BROWSER_PREDICTORS_RESOURCE_PREFETCHER_H_ -#include <map> #include <list> +#include <map> #include <vector> #include "base/gtest_prod_util.h" @@ -14,8 +14,8 @@ #include "base/memory/scoped_vector.h" #include "base/threading/non_thread_safe.h" #include "chrome/browser/predictors/resource_prefetch_common.h" -#include "googleurl/src/gurl.h" #include "net/url_request/url_request.h" +#include "url/gurl.h" namespace net { class URLRequestContext; diff --git a/chrome/browser/prefs/session_startup_pref.h b/chrome/browser/prefs/session_startup_pref.h index a31380f..379451e 100644 --- a/chrome/browser/prefs/session_startup_pref.h +++ b/chrome/browser/prefs/session_startup_pref.h @@ -7,7 +7,7 @@ #include <vector> -#include "googleurl/src/gurl.h" +#include "url/gurl.h" class PrefService; class Profile; diff --git a/chrome/browser/prerender/prerender_browsertest.cc b/chrome/browser/prerender/prerender_browsertest.cc index 4a2f70e..47117f1 100644 --- a/chrome/browser/prerender/prerender_browsertest.cc +++ b/chrome/browser/prerender/prerender_browsertest.cc @@ -54,7 +54,6 @@ #include "content/public/test/browser_test_utils.h" #include "content/public/test/test_navigation_observer.h" #include "content/public/test/test_utils.h" -#include "googleurl/src/gurl.h" #include "grit/generated_resources.h" #include "net/dns/mock_host_resolver.h" #include "net/url_request/url_request_context.h" @@ -62,6 +61,7 @@ #include "net/url_request/url_request_filter.h" #include "net/url_request/url_request_job.h" #include "ui/base/l10n/l10n_util.h" +#include "url/gurl.h" using content::BrowserThread; using content::DevToolsAgentHost; diff --git a/chrome/browser/prerender/prerender_histograms.h b/chrome/browser/prerender/prerender_histograms.h index 541780b..5c9a2d8 100644 --- a/chrome/browser/prerender/prerender_histograms.h +++ b/chrome/browser/prerender/prerender_histograms.h @@ -12,7 +12,7 @@ #include "chrome/browser/prerender/prerender_final_status.h" #include "chrome/browser/prerender/prerender_local_predictor.h" #include "chrome/browser/prerender/prerender_origin.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" namespace prerender { diff --git a/chrome/browser/prerender/prerender_history.h b/chrome/browser/prerender/prerender_history.h index dcaa62a..dff22e2b 100644 --- a/chrome/browser/prerender/prerender_history.h +++ b/chrome/browser/prerender/prerender_history.h @@ -11,7 +11,7 @@ #include "base/time/time.h" #include "chrome/browser/prerender/prerender_final_status.h" #include "chrome/browser/prerender/prerender_origin.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" namespace base { class Value; diff --git a/chrome/browser/prerender/prerender_link_manager.cc b/chrome/browser/prerender/prerender_link_manager.cc index 14cdc6e..04dcf82 100644 --- a/chrome/browser/prerender/prerender_link_manager.cc +++ b/chrome/browser/prerender/prerender_link_manager.cc @@ -19,8 +19,8 @@ #include "content/public/browser/render_view_host.h" #include "content/public/browser/session_storage_namespace.h" #include "content/public/common/referrer.h" -#include "googleurl/src/gurl.h" #include "ui/gfx/size.h" +#include "url/gurl.h" using base::TimeDelta; using base::TimeTicks; diff --git a/chrome/browser/prerender/prerender_link_manager.h b/chrome/browser/prerender/prerender_link_manager.h index 1d77507..59d00c1 100644 --- a/chrome/browser/prerender/prerender_link_manager.h +++ b/chrome/browser/prerender/prerender_link_manager.h @@ -12,7 +12,7 @@ #include "base/time/time.h" #include "chrome/browser/prerender/prerender_handle.h" #include "components/browser_context_keyed_service/browser_context_keyed_service.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" class Profile; diff --git a/chrome/browser/prerender/prerender_local_predictor.cc b/chrome/browser/prerender/prerender_local_predictor.cc index 5ab80c8..93525f6 100644 --- a/chrome/browser/prerender/prerender_local_predictor.cc +++ b/chrome/browser/prerender/prerender_local_predictor.cc @@ -35,9 +35,9 @@ #include "content/public/browser/web_contents_view.h" #include "content/public/common/page_transition_types.h" #include "crypto/secure_hash.h" -#include "googleurl/src/url_canon.h" #include "grit/browser_resources.h" #include "ui/base/resource/resource_bundle.h" +#include "url/url_canon.h" using content::BrowserThread; using content::PageTransition; diff --git a/chrome/browser/prerender/prerender_local_predictor.h b/chrome/browser/prerender/prerender_local_predictor.h index 641cafb..ebd8e03 100644 --- a/chrome/browser/prerender/prerender_local_predictor.h +++ b/chrome/browser/prerender/prerender_local_predictor.h @@ -13,7 +13,7 @@ #include "base/timer/timer.h" #include "chrome/browser/common/cancelable_request.h" #include "chrome/browser/history/visit_database.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" class HistoryService; diff --git a/chrome/browser/prerender/prerender_manager.h b/chrome/browser/prerender/prerender_manager.h index 7e6e330..67ff3f3 100644 --- a/chrome/browser/prerender/prerender_manager.h +++ b/chrome/browser/prerender/prerender_manager.h @@ -27,8 +27,8 @@ #include "components/browser_context_keyed_service/browser_context_keyed_service.h" #include "content/public/browser/notification_observer.h" #include "content/public/browser/notification_registrar.h" -#include "googleurl/src/gurl.h" #include "net/cookies/cookie_monster.h" +#include "url/gurl.h" class Profile; struct ChromeCookieDetails; diff --git a/chrome/browser/prerender/prerender_message_filter.h b/chrome/browser/prerender/prerender_message_filter.h index d8ed3bb..0d5eb06 100644 --- a/chrome/browser/prerender/prerender_message_filter.h +++ b/chrome/browser/prerender/prerender_message_filter.h @@ -7,7 +7,7 @@ #include "base/compiler_specific.h" #include "content/public/browser/browser_message_filter.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" class Profile; diff --git a/chrome/browser/prerender/prerender_tab_helper.h b/chrome/browser/prerender/prerender_tab_helper.h index 3a050d3..1e889ce 100644 --- a/chrome/browser/prerender/prerender_tab_helper.h +++ b/chrome/browser/prerender/prerender_tab_helper.h @@ -10,7 +10,7 @@ #include "base/time/time.h" #include "content/public/browser/web_contents_observer.h" #include "content/public/browser/web_contents_user_data.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" namespace predictors { class LoggedInPredictorTable; diff --git a/chrome/browser/prerender/prerender_tracker.h b/chrome/browser/prerender/prerender_tracker.h index 15bfd2a..81557f3 100644 --- a/chrome/browser/prerender/prerender_tracker.h +++ b/chrome/browser/prerender/prerender_tracker.h @@ -15,7 +15,7 @@ #include "base/threading/non_thread_safe.h" #include "chrome/browser/prerender/prerender_contents.h" #include "chrome/browser/prerender/prerender_final_status.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" namespace prerender { diff --git a/chrome/browser/prerender/prerender_unittest.cc b/chrome/browser/prerender/prerender_unittest.cc index 7045e66..5b60f9d 100644 --- a/chrome/browser/prerender/prerender_unittest.cc +++ b/chrome/browser/prerender/prerender_unittest.cc @@ -18,9 +18,9 @@ #include "chrome/test/base/testing_profile.h" #include "content/public/browser/render_view_host.h" #include "content/public/test/test_browser_thread.h" -#include "googleurl/src/gurl.h" #include "testing/gtest/include/gtest/gtest.h" #include "ui/gfx/size.h" +#include "url/gurl.h" using base::Time; using base::TimeDelta; diff --git a/chrome/browser/prerender/prerender_util.cc b/chrome/browser/prerender/prerender_util.cc index 60ffd57..ca25418 100644 --- a/chrome/browser/prerender/prerender_util.cc +++ b/chrome/browser/prerender/prerender_util.cc @@ -8,11 +8,11 @@ #include "base/metrics/sparse_histogram.h" #include "base/strings/string_util.h" #include "content/public/browser/resource_request_info.h" -#include "googleurl/src/url_canon.h" -#include "googleurl/src/url_parse.h" -#include "googleurl/src/url_util.h" #include "net/http/http_response_headers.h" #include "net/url_request/url_request.h" +#include "url/url_canon.h" +#include "url/url_parse.h" +#include "url/url_util.h" namespace prerender { diff --git a/chrome/browser/prerender/prerender_util.h b/chrome/browser/prerender/prerender_util.h index 417c951..1c0626e 100644 --- a/chrome/browser/prerender/prerender_util.h +++ b/chrome/browser/prerender/prerender_util.h @@ -6,7 +6,7 @@ #define CHROME_BROWSER_PRERENDER_PRERENDER_UTIL_H_ #include "base/basictypes.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" namespace net { class URLRequest; diff --git a/chrome/browser/printing/cloud_print/cloud_print_url.cc b/chrome/browser/printing/cloud_print/cloud_print_url.cc index d056316..2e46123 100644 --- a/chrome/browser/printing/cloud_print/cloud_print_url.cc +++ b/chrome/browser/printing/cloud_print/cloud_print_url.cc @@ -14,8 +14,8 @@ #include "chrome/common/pref_names.h" #include "components/user_prefs/pref_registry_syncable.h" #include "google_apis/gaia/gaia_urls.h" -#include "googleurl/src/gurl.h" #include "net/base/escape.h" +#include "url/gurl.h" // Url must not be matched by "urls" section of // cloud_print_app/manifest.json. If it's matched, print driver dialog will diff --git a/chrome/browser/printing/print_preview_dialog_controller_browsertest.cc b/chrome/browser/printing/print_preview_dialog_controller_browsertest.cc index ee17e94..9cecc56 100644 --- a/chrome/browser/printing/print_preview_dialog_controller_browsertest.cc +++ b/chrome/browser/printing/print_preview_dialog_controller_browsertest.cc @@ -15,7 +15,7 @@ #include "content/public/browser/notification_service.h" #include "content/public/browser/notification_types.h" #include "content/public/browser/web_contents_observer.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" using content::WebContents; diff --git a/chrome/browser/profiles/profile_downloader.cc b/chrome/browser/profiles/profile_downloader.cc index 56ebaf6..1cb0b1f 100644 --- a/chrome/browser/profiles/profile_downloader.cc +++ b/chrome/browser/profiles/profile_downloader.cc @@ -28,11 +28,11 @@ #include "google_apis/gaia/gaia_constants.h" #include "google_apis/gaia/gaia_urls.h" #include "google_apis/gaia/oauth2_access_token_fetcher.h" -#include "googleurl/src/gurl.h" #include "net/base/load_flags.h" #include "net/url_request/url_fetcher.h" #include "net/url_request/url_request_status.h" #include "skia/ext/image_operations.h" +#include "url/gurl.h" using content::BrowserThread; diff --git a/chrome/browser/profiles/profile_downloader.h b/chrome/browser/profiles/profile_downloader.h index 39483d9..6921618 100644 --- a/chrome/browser/profiles/profile_downloader.h +++ b/chrome/browser/profiles/profile_downloader.h @@ -15,9 +15,9 @@ #include "content/public/browser/notification_observer.h" #include "content/public/browser/notification_registrar.h" #include "google_apis/gaia/oauth2_access_token_consumer.h" -#include "googleurl/src/gurl.h" #include "net/url_request/url_fetcher_delegate.h" #include "third_party/skia/include/core/SkBitmap.h" +#include "url/gurl.h" class ProfileDownloaderDelegate; class OAuth2AccessTokenFetcher; diff --git a/chrome/browser/renderer_host/chrome_render_message_filter.cc b/chrome/browser/renderer_host/chrome_render_message_filter.cc index 7166497..5ab3fe8 100644 --- a/chrome/browser/renderer_host/chrome_render_message_filter.cc +++ b/chrome/browser/renderer_host/chrome_render_message_filter.cc @@ -44,7 +44,7 @@ #include "content/public/browser/resource_dispatcher_host.h" #include "content/public/common/process_type.h" #include "extensions/common/constants.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" #if defined(USE_TCMALLOC) #include "chrome/browser/browser_about_handler.h" diff --git a/chrome/browser/renderer_host/chrome_render_widget_host_view_mac_delegate_browsertest.cc b/chrome/browser/renderer_host/chrome_render_widget_host_view_mac_delegate_browsertest.cc index 1a0949e..615b577 100644 --- a/chrome/browser/renderer_host/chrome_render_widget_host_view_mac_delegate_browsertest.cc +++ b/chrome/browser/renderer_host/chrome_render_widget_host_view_mac_delegate_browsertest.cc @@ -16,8 +16,8 @@ #include "content/public/browser/render_view_host.h" #include "content/public/browser/web_contents.h" #include "content/public/test/browser_test_utils.h" -#include "googleurl/src/gurl.h" #include "net/base/net_util.h" +#include "url/gurl.h" class ChromeRenderWidgetHostViewMacDelegateTest : public InProcessBrowserTest { public: diff --git a/chrome/browser/renderer_host/pepper/pepper_broker_message_filter.cc b/chrome/browser/renderer_host/pepper/pepper_broker_message_filter.cc index f5d7dd8..60ffa5c8 100644 --- a/chrome/browser/renderer_host/pepper/pepper_broker_message_filter.cc +++ b/chrome/browser/renderer_host/pepper/pepper_broker_message_filter.cc @@ -12,11 +12,11 @@ #include "content/public/browser/browser_ppapi_host.h" #include "content/public/browser/browser_thread.h" #include "content/public/browser/render_process_host.h" -#include "googleurl/src/gurl.h" #include "ipc/ipc_message_macros.h" #include "ppapi/c/pp_errors.h" #include "ppapi/host/dispatch_host_message.h" #include "ppapi/proxy/ppapi_messages.h" +#include "url/gurl.h" using content::BrowserPpapiHost; using content::BrowserThread; diff --git a/chrome/browser/renderer_host/pepper/pepper_broker_message_filter.h b/chrome/browser/renderer_host/pepper/pepper_broker_message_filter.h index d59f505..95b40fd 100644 --- a/chrome/browser/renderer_host/pepper/pepper_broker_message_filter.h +++ b/chrome/browser/renderer_host/pepper/pepper_broker_message_filter.h @@ -6,9 +6,9 @@ #define CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_BROKER_MESSAGE_FILTER_H_ #include "base/compiler_specific.h" -#include "googleurl/src/gurl.h" #include "ppapi/c/pp_instance.h" #include "ppapi/host/resource_message_filter.h" +#include "url/gurl.h" namespace content { class BrowserPpapiHost; diff --git a/chrome/browser/renderer_host/pepper/pepper_crx_file_system_message_filter.h b/chrome/browser/renderer_host/pepper/pepper_crx_file_system_message_filter.h index b970d11..0ab0c43 100644 --- a/chrome/browser/renderer_host/pepper/pepper_crx_file_system_message_filter.h +++ b/chrome/browser/renderer_host/pepper/pepper_crx_file_system_message_filter.h @@ -9,11 +9,11 @@ #include <string> #include "base/files/file_path.h" -#include "googleurl/src/gurl.h" #include "ppapi/c/pp_instance.h" #include "ppapi/c/pp_resource.h" #include "ppapi/host/resource_host.h" #include "ppapi/host/resource_message_filter.h" +#include "url/gurl.h" class Profile; diff --git a/chrome/browser/renderer_host/pepper/pepper_extensions_common_message_filter.h b/chrome/browser/renderer_host/pepper/pepper_extensions_common_message_filter.h index d9dae5c..832e859 100644 --- a/chrome/browser/renderer_host/pepper/pepper_extensions_common_message_filter.h +++ b/chrome/browser/renderer_host/pepper/pepper_extensions_common_message_filter.h @@ -13,9 +13,9 @@ #include "base/memory/scoped_ptr.h" #include "base/strings/string16.h" #include "chrome/browser/extensions/extension_function.h" -#include "googleurl/src/gurl.h" #include "ppapi/c/pp_instance.h" #include "ppapi/host/resource_message_filter.h" +#include "url/gurl.h" struct ExtensionHostMsg_Request_Params; diff --git a/chrome/browser/renderer_host/pepper/pepper_flash_browser_host.cc b/chrome/browser/renderer_host/pepper/pepper_flash_browser_host.cc index 53b3b0a..85849cf 100644 --- a/chrome/browser/renderer_host/pepper/pepper_flash_browser_host.cc +++ b/chrome/browser/renderer_host/pepper/pepper_flash_browser_host.cc @@ -11,7 +11,6 @@ #include "content/public/browser/browser_ppapi_host.h" #include "content/public/browser/browser_thread.h" #include "content/public/browser/render_process_host.h" -#include "googleurl/src/gurl.h" #include "ipc/ipc_message_macros.h" #include "ppapi/c/pp_errors.h" #include "ppapi/c/private/ppb_flash.h" @@ -19,6 +18,7 @@ #include "ppapi/proxy/ppapi_messages.h" #include "ppapi/proxy/resource_message_params.h" #include "ppapi/shared_impl/time_conversion.h" +#include "url/gurl.h" #if defined(OS_WIN) #include <windows.h> diff --git a/chrome/browser/safe_browsing/browser_feature_extractor.cc b/chrome/browser/safe_browsing/browser_feature_extractor.cc index 6d5a17a..6cfb98f 100644 --- a/chrome/browser/safe_browsing/browser_feature_extractor.cc +++ b/chrome/browser/safe_browsing/browser_feature_extractor.cc @@ -26,7 +26,7 @@ #include "content/public/browser/navigation_entry.h" #include "content/public/browser/web_contents.h" #include "content/public/common/page_transition_types.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" using content::BrowserThread; using content::NavigationController; diff --git a/chrome/browser/safe_browsing/browser_feature_extractor.h b/chrome/browser/safe_browsing/browser_feature_extractor.h index 1c7964f..086e9bb 100644 --- a/chrome/browser/safe_browsing/browser_feature_extractor.h +++ b/chrome/browser/safe_browsing/browser_feature_extractor.h @@ -26,7 +26,7 @@ #include "chrome/browser/history/history_types.h" #include "chrome/browser/safe_browsing/safe_browsing_service.h" #include "chrome/browser/safe_browsing/ui_manager.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" class HistoryService; diff --git a/chrome/browser/safe_browsing/browser_feature_extractor_unittest.cc b/chrome/browser/safe_browsing/browser_feature_extractor_unittest.cc index dd24f0d..9c2d444 100644 --- a/chrome/browser/safe_browsing/browser_feature_extractor_unittest.cc +++ b/chrome/browser/safe_browsing/browser_feature_extractor_unittest.cc @@ -28,9 +28,9 @@ #include "content/public/common/referrer.h" #include "content/public/test/test_browser_thread.h" #include "content/public/test/web_contents_tester.h" -#include "googleurl/src/gurl.h" #include "testing/gmock/include/gmock/gmock.h" #include "testing/gtest/include/gtest/gtest.h" +#include "url/gurl.h" using content::WebContentsTester; using testing::Return; diff --git a/chrome/browser/safe_browsing/client_side_detection_host.cc b/chrome/browser/safe_browsing/client_side_detection_host.cc index 81cb917..5c5a781 100644 --- a/chrome/browser/safe_browsing/client_side_detection_host.cc +++ b/chrome/browser/safe_browsing/client_side_detection_host.cc @@ -35,7 +35,7 @@ #include "content/public/browser/resource_request_details.h" #include "content/public/browser/web_contents.h" #include "content/public/common/frame_navigate_params.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" using content::BrowserThread; using content::NavigationEntry; diff --git a/chrome/browser/safe_browsing/client_side_detection_host.h b/chrome/browser/safe_browsing/client_side_detection_host.h index 70dbbbe..7329f52 100644 --- a/chrome/browser/safe_browsing/client_side_detection_host.h +++ b/chrome/browser/safe_browsing/client_side_detection_host.h @@ -17,7 +17,7 @@ #include "content/public/browser/notification_registrar.h" #include "content/public/browser/resource_request_details.h" #include "content/public/browser/web_contents_observer.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" namespace safe_browsing { class ClientPhishingRequest; diff --git a/chrome/browser/safe_browsing/client_side_detection_host_unittest.cc b/chrome/browser/safe_browsing/client_side_detection_host_unittest.cc index 9c2aeed..3a696b5 100644 --- a/chrome/browser/safe_browsing/client_side_detection_host_unittest.cc +++ b/chrome/browser/safe_browsing/client_side_detection_host_unittest.cc @@ -23,10 +23,10 @@ #include "content/public/test/mock_render_process_host.h" #include "content/public/test/test_browser_thread.h" #include "content/public/test/test_renderer_host.h" -#include "googleurl/src/gurl.h" #include "ipc/ipc_test_sink.h" #include "testing/gmock/include/gmock/gmock.h" #include "testing/gtest/include/gtest/gtest.h" +#include "url/gurl.h" using ::testing::_; using ::testing::DeleteArg; diff --git a/chrome/browser/safe_browsing/client_side_detection_service.cc b/chrome/browser/safe_browsing/client_side_detection_service.cc index 4d78a25..b0514b3 100644 --- a/chrome/browser/safe_browsing/client_side_detection_service.cc +++ b/chrome/browser/safe_browsing/client_side_detection_service.cc @@ -27,7 +27,6 @@ #include "content/public/browser/render_process_host.h" #include "crypto/sha2.h" #include "google_apis/google_api_keys.h" -#include "googleurl/src/gurl.h" #include "net/base/escape.h" #include "net/base/load_flags.h" #include "net/http/http_response_headers.h" @@ -35,6 +34,7 @@ #include "net/url_request/url_fetcher.h" #include "net/url_request/url_request_context_getter.h" #include "net/url_request/url_request_status.h" +#include "url/gurl.h" using content::BrowserThread; diff --git a/chrome/browser/safe_browsing/client_side_detection_service.h b/chrome/browser/safe_browsing/client_side_detection_service.h index 7a4ab35..ccc3c66 100644 --- a/chrome/browser/safe_browsing/client_side_detection_service.h +++ b/chrome/browser/safe_browsing/client_side_detection_service.h @@ -30,9 +30,9 @@ #include "base/time/time.h" #include "content/public/browser/notification_observer.h" #include "content/public/browser/notification_registrar.h" -#include "googleurl/src/gurl.h" #include "net/base/net_util.h" #include "net/url_request/url_fetcher_delegate.h" +#include "url/gurl.h" class SafeBrowsingService; diff --git a/chrome/browser/safe_browsing/client_side_detection_service_unittest.cc b/chrome/browser/safe_browsing/client_side_detection_service_unittest.cc index 9f0dd7d..eb74147 100644 --- a/chrome/browser/safe_browsing/client_side_detection_service_unittest.cc +++ b/chrome/browser/safe_browsing/client_side_detection_service_unittest.cc @@ -17,11 +17,11 @@ #include "chrome/common/safe_browsing/csd.pb.h" #include "content/public/test/test_browser_thread.h" #include "crypto/sha2.h" -#include "googleurl/src/gurl.h" #include "net/url_request/test_url_fetcher_factory.h" #include "net/url_request/url_request_status.h" #include "testing/gmock/include/gmock/gmock.h" #include "testing/gtest/include/gtest/gtest.h" +#include "url/gurl.h" using ::testing::_; using ::testing::Invoke; diff --git a/chrome/browser/safe_browsing/database_manager.h b/chrome/browser/safe_browsing/database_manager.h index 28d6385..09f64bd 100644 --- a/chrome/browser/safe_browsing/database_manager.h +++ b/chrome/browser/safe_browsing/database_manager.h @@ -22,7 +22,7 @@ #include "base/time/time.h" #include "chrome/browser/safe_browsing/protocol_manager.h" #include "chrome/browser/safe_browsing/safe_browsing_util.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" class SafeBrowsingService; class SafeBrowsingDatabase; diff --git a/chrome/browser/safe_browsing/download_protection_service.h b/chrome/browser/safe_browsing/download_protection_service.h index 045bb2f..48ab04a 100644 --- a/chrome/browser/safe_browsing/download_protection_service.h +++ b/chrome/browser/safe_browsing/download_protection_service.h @@ -19,7 +19,7 @@ #include "base/memory/ref_counted.h" #include "chrome/browser/safe_browsing/database_manager.h" #include "chrome/browser/safe_browsing/ui_manager.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" namespace content { diff --git a/chrome/browser/safe_browsing/download_protection_service_unittest.cc b/chrome/browser/safe_browsing/download_protection_service_unittest.cc index e5baf4c..1862107 100644 --- a/chrome/browser/safe_browsing/download_protection_service_unittest.cc +++ b/chrome/browser/safe_browsing/download_protection_service_unittest.cc @@ -28,13 +28,13 @@ #include "chrome/common/safe_browsing/csd.pb.h" #include "content/public/test/mock_download_item.h" #include "content/public/test/test_browser_thread.h" -#include "googleurl/src/gurl.h" #include "net/cert/x509_certificate.h" #include "net/url_request/test_url_fetcher_factory.h" #include "net/url_request/url_fetcher_delegate.h" #include "testing/gmock/include/gmock/gmock.h" #include "testing/gtest/include/gtest/gtest.h" #include "third_party/zlib/google/zip.h" +#include "url/gurl.h" using ::testing::Assign; using ::testing::ContainerEq; diff --git a/chrome/browser/safe_browsing/ping_manager.h b/chrome/browser/safe_browsing/ping_manager.h index bdee022..f976cff 100644 --- a/chrome/browser/safe_browsing/ping_manager.h +++ b/chrome/browser/safe_browsing/ping_manager.h @@ -15,8 +15,8 @@ #include "base/memory/scoped_ptr.h" #include "chrome/browser/safe_browsing/protocol_manager_helper.h" #include "chrome/browser/safe_browsing/safe_browsing_util.h" -#include "googleurl/src/gurl.h" #include "net/url_request/url_fetcher_delegate.h" +#include "url/gurl.h" namespace net { class URLRequestContextGetter; diff --git a/chrome/browser/safe_browsing/protocol_manager.h b/chrome/browser/safe_browsing/protocol_manager.h index a3533e6..f5555e3 100644 --- a/chrome/browser/safe_browsing/protocol_manager.h +++ b/chrome/browser/safe_browsing/protocol_manager.h @@ -28,8 +28,8 @@ #include "chrome/browser/safe_browsing/protocol_manager_helper.h" #include "chrome/browser/safe_browsing/protocol_parser.h" #include "chrome/browser/safe_browsing/safe_browsing_util.h" -#include "googleurl/src/gurl.h" #include "net/url_request/url_fetcher_delegate.h" +#include "url/gurl.h" namespace net { class URLFetcher; diff --git a/chrome/browser/safe_browsing/safe_browsing_blocking_page.h b/chrome/browser/safe_browsing/safe_browsing_blocking_page.h index 1bf835b..f208d3b 100644 --- a/chrome/browser/safe_browsing/safe_browsing_blocking_page.h +++ b/chrome/browser/safe_browsing/safe_browsing_blocking_page.h @@ -36,7 +36,7 @@ #include "base/time/time.h" #include "chrome/browser/safe_browsing/ui_manager.h" #include "content/public/browser/interstitial_page_delegate.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" class MalwareDetails; class SafeBrowsingBlockingPageFactory; diff --git a/chrome/browser/safe_browsing/safe_browsing_database.cc b/chrome/browser/safe_browsing/safe_browsing_database.cc index d56d61f..ce2483c 100644 --- a/chrome/browser/safe_browsing/safe_browsing_database.cc +++ b/chrome/browser/safe_browsing/safe_browsing_database.cc @@ -18,7 +18,7 @@ #include "chrome/browser/safe_browsing/safe_browsing_store_file.h" #include "content/public/browser/browser_thread.h" #include "crypto/sha2.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" #if defined(OS_MACOSX) #include "base/mac/mac_util.h" diff --git a/chrome/browser/safe_browsing/safe_browsing_database_unittest.cc b/chrome/browser/safe_browsing/safe_browsing_database_unittest.cc index 44e7b39..3b61ce7 100644 --- a/chrome/browser/safe_browsing/safe_browsing_database_unittest.cc +++ b/chrome/browser/safe_browsing/safe_browsing_database_unittest.cc @@ -14,11 +14,11 @@ #include "chrome/browser/safe_browsing/safe_browsing_store_unittest_helper.h" #include "content/public/test/test_browser_thread.h" #include "crypto/sha2.h" -#include "googleurl/src/gurl.h" #include "sql/connection.h" #include "sql/statement.h" #include "testing/gtest/include/gtest/gtest.h" #include "testing/platform_test.h" +#include "url/gurl.h" using base::Time; using content::BrowserThread; diff --git a/chrome/browser/safe_browsing/safe_browsing_util.cc b/chrome/browser/safe_browsing/safe_browsing_util.cc index c979f2f..53d5a99 100644 --- a/chrome/browser/safe_browsing/safe_browsing_util.cc +++ b/chrome/browser/safe_browsing/safe_browsing_util.cc @@ -9,9 +9,9 @@ #include "base/strings/stringprintf.h" #include "chrome/browser/google/google_util.h" #include "crypto/sha2.h" -#include "googleurl/src/gurl.h" -#include "googleurl/src/url_util.h" #include "net/base/escape.h" +#include "url/gurl.h" +#include "url/url_util.h" #if defined(OS_WIN) #include "chrome/installer/util/browser_distribution.h" diff --git a/chrome/browser/safe_browsing/safe_browsing_util_unittest.cc b/chrome/browser/safe_browsing/safe_browsing_util_unittest.cc index d43c20e..20b033b 100644 --- a/chrome/browser/safe_browsing/safe_browsing_util_unittest.cc +++ b/chrome/browser/safe_browsing/safe_browsing_util_unittest.cc @@ -7,8 +7,8 @@ #include "base/strings/stringprintf.h" #include "chrome/browser/safe_browsing/safe_browsing_util.h" #include "crypto/sha2.h" -#include "googleurl/src/gurl.h" #include "testing/gtest/include/gtest/gtest.h" +#include "url/gurl.h" namespace { diff --git a/chrome/browser/safe_browsing/two_phase_uploader.h b/chrome/browser/safe_browsing/two_phase_uploader.h index c10cf7b..1055529 100644 --- a/chrome/browser/safe_browsing/two_phase_uploader.h +++ b/chrome/browser/safe_browsing/two_phase_uploader.h @@ -12,8 +12,8 @@ #include "base/files/file_path.h" #include "base/memory/scoped_ptr.h" #include "base/threading/non_thread_safe.h" -#include "googleurl/src/gurl.h" #include "net/url_request/url_request_context_getter.h" +#include "url/gurl.h" namespace base { class TaskRunner; diff --git a/chrome/browser/safe_browsing/ui_manager.h b/chrome/browser/safe_browsing/ui_manager.h index ed3fdd021..5c896ca 100644 --- a/chrome/browser/safe_browsing/ui_manager.h +++ b/chrome/browser/safe_browsing/ui_manager.h @@ -18,7 +18,7 @@ #include "base/time/time.h" #include "chrome/browser/safe_browsing/safe_browsing_util.h" #include "content/public/browser/notification_observer.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" class SafeBrowsingService; diff --git a/chrome/browser/search/iframe_source.cc b/chrome/browser/search/iframe_source.cc index d204ee7..58a5c06 100644 --- a/chrome/browser/search/iframe_source.cc +++ b/chrome/browser/search/iframe_source.cc @@ -12,10 +12,10 @@ #include "chrome/common/url_constants.h" #include "content/public/browser/render_view_host.h" #include "content/public/browser/web_contents.h" -#include "googleurl/src/gurl.h" #include "grit/browser_resources.h" #include "net/url_request/url_request.h" #include "ui/base/resource/resource_bundle.h" +#include "url/gurl.h" IframeSource::IframeSource() { } diff --git a/chrome/browser/search/iframe_source_unittest.cc b/chrome/browser/search/iframe_source_unittest.cc index b560c02..ceb80f4 100644 --- a/chrome/browser/search/iframe_source_unittest.cc +++ b/chrome/browser/search/iframe_source_unittest.cc @@ -13,11 +13,11 @@ #include "content/public/browser/resource_request_info.h" #include "content/public/test/mock_resource_context.h" #include "content/public/test/test_browser_thread.h" -#include "googleurl/src/gurl.h" #include "grit/browser_resources.h" #include "net/url_request/url_request.h" #include "net/url_request/url_request_context.h" #include "testing/gtest/include/gtest/gtest.h" +#include "url/gurl.h" const int kNonInstantRendererPID = 0; const char kNonInstantOrigin[] = "http://evil"; diff --git a/chrome/browser/search/instant_io_context.cc b/chrome/browser/search/instant_io_context.cc index c579f969..650618a 100644 --- a/chrome/browser/search/instant_io_context.cc +++ b/chrome/browser/search/instant_io_context.cc @@ -7,8 +7,8 @@ #include "content/public/browser/browser_thread.h" #include "content/public/browser/resource_context.h" #include "content/public/browser/resource_request_info.h" -#include "googleurl/src/gurl.h" #include "net/url_request/url_request.h" +#include "url/gurl.h" using content::BrowserThread; diff --git a/chrome/browser/search/instant_service.cc b/chrome/browser/search/instant_service.cc index ba8d96e..7718bc1 100644 --- a/chrome/browser/search/instant_service.cc +++ b/chrome/browser/search/instant_service.cc @@ -30,12 +30,12 @@ #include "content/public/browser/notification_types.h" #include "content/public/browser/render_process_host.h" #include "content/public/browser/url_data_source.h" -#include "googleurl/src/gurl.h" #include "grit/theme_resources.h" #include "net/url_request/url_request.h" #include "ui/gfx/color_utils.h" #include "ui/gfx/image/image_skia.h" #include "ui/gfx/sys_color_change_listener.h" +#include "url/gurl.h" using content::BrowserThread; diff --git a/chrome/browser/search/local_ntp_source.cc b/chrome/browser/search/local_ntp_source.cc index e886504..e79ff92 100644 --- a/chrome/browser/search/local_ntp_source.cc +++ b/chrome/browser/search/local_ntp_source.cc @@ -12,7 +12,6 @@ #include "chrome/browser/search/instant_io_context.h" #include "chrome/browser/search/search.h" #include "chrome/common/url_constants.h" -#include "googleurl/src/gurl.h" #include "grit/browser_resources.h" #include "grit/generated_resources.h" #include "grit/ui_resources.h" @@ -20,6 +19,7 @@ #include "ui/base/l10n/l10n_util.h" #include "ui/base/resource/resource_bundle.h" #include "ui/webui/jstemplate_builder.h" +#include "url/gurl.h" namespace { diff --git a/chrome/browser/search/most_visited_iframe_source.cc b/chrome/browser/search/most_visited_iframe_source.cc index 132383b..5f9fed9 100644 --- a/chrome/browser/search/most_visited_iframe_source.cc +++ b/chrome/browser/search/most_visited_iframe_source.cc @@ -7,9 +7,9 @@ #include "base/metrics/histogram.h" #include "base/strings/string_number_conversions.h" #include "chrome/common/url_constants.h" -#include "googleurl/src/gurl.h" #include "grit/browser_resources.h" #include "net/base/url_util.h" +#include "url/gurl.h" namespace { diff --git a/chrome/browser/search_engines/search_provider_install_state_message_filter.cc b/chrome/browser/search_engines/search_provider_install_state_message_filter.cc index 8dd0d78..0704140 100644 --- a/chrome/browser/search_engines/search_provider_install_state_message_filter.cc +++ b/chrome/browser/search_engines/search_provider_install_state_message_filter.cc @@ -12,7 +12,7 @@ #include "content/public/browser/notification_types.h" #include "content/public/browser/render_process_host.h" #include "content/public/browser/render_view_host.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" using content::BrowserThread; diff --git a/chrome/browser/search_engines/search_terms_data.cc b/chrome/browser/search_engines/search_terms_data.cc index ee1043f..32b6100 100644 --- a/chrome/browser/search_engines/search_terms_data.cc +++ b/chrome/browser/search_engines/search_terms_data.cc @@ -19,7 +19,7 @@ #include "chrome/common/chrome_switches.h" #include "chrome/common/pref_names.h" #include "content/public/browser/browser_thread.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" #if defined(ENABLE_RLZ) #include "chrome/browser/rlz/rlz.h" diff --git a/chrome/browser/search_engines/template_url.h b/chrome/browser/search_engines/template_url.h index b8149f7..f81876a 100644 --- a/chrome/browser/search_engines/template_url.h +++ b/chrome/browser/search_engines/template_url.h @@ -11,8 +11,8 @@ #include "base/gtest_prod_util.h" #include "base/time/time.h" #include "chrome/browser/search_engines/template_url_id.h" -#include "googleurl/src/gurl.h" -#include "googleurl/src/url_parse.h" +#include "url/gurl.h" +#include "url/url_parse.h" class Profile; class SearchTermsData; diff --git a/chrome/browser/search_engines/template_url_fetcher_unittest.cc b/chrome/browser/search_engines/template_url_fetcher_unittest.cc index f6ae15e..9120251 100644 --- a/chrome/browser/search_engines/template_url_fetcher_unittest.cc +++ b/chrome/browser/search_engines/template_url_fetcher_unittest.cc @@ -15,9 +15,9 @@ #include "chrome/browser/search_engines/template_url_service_test_util.h" #include "chrome/common/chrome_paths.h" #include "chrome/test/base/testing_profile.h" -#include "googleurl/src/gurl.h" #include "net/test/embedded_test_server/embedded_test_server.h" #include "testing/gtest/include/gtest/gtest.h" +#include "url/gurl.h" class TemplateURLFetcherTest; diff --git a/chrome/browser/search_engines/template_url_parser.cc b/chrome/browser/search_engines/template_url_parser.cc index 121e539..64978a7 100644 --- a/chrome/browser/search_engines/template_url_parser.cc +++ b/chrome/browser/search_engines/template_url_parser.cc @@ -17,10 +17,10 @@ #include "chrome/browser/search_engines/template_url.h" #include "chrome/browser/search_engines/template_url_service.h" #include "chrome/common/url_constants.h" -#include "googleurl/src/gurl.h" #include "libxml/parser.h" #include "libxml/xmlwriter.h" #include "ui/gfx/favicon_size.h" +#include "url/gurl.h" namespace { diff --git a/chrome/browser/search_engines/template_url_prepopulate_data.cc b/chrome/browser/search_engines/template_url_prepopulate_data.cc index c11718f..aa3032e 100644 --- a/chrome/browser/search_engines/template_url_prepopulate_data.cc +++ b/chrome/browser/search_engines/template_url_prepopulate_data.cc @@ -28,10 +28,10 @@ #include "chrome/common/pref_names.h" #include "components/user_prefs/pref_registry_syncable.h" #include "content/public/browser/browser_thread.h" -#include "googleurl/src/gurl.h" #include "grit/generated_resources.h" #include "grit/theme_resources.h" #include "ui/base/l10n/l10n_util.h" +#include "url/gurl.h" #if defined(OS_WIN) #undef IN // On Windows, windef.h defines this, which screws up "India" cases. diff --git a/chrome/browser/sessions/base_session_service.h b/chrome/browser/sessions/base_session_service.h index 67175a5..be2c258 100644 --- a/chrome/browser/sessions/base_session_service.h +++ b/chrome/browser/sessions/base_session_service.h @@ -16,7 +16,7 @@ #include "chrome/browser/common/cancelable_request.h" #include "chrome/browser/sessions/session_id.h" #include "chrome/common/cancelable_task_tracker.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" class Profile; class SessionBackend; diff --git a/chrome/browser/sessions/session_types.h b/chrome/browser/sessions/session_types.h index d0a5bc0..ac664d6 100644 --- a/chrome/browser/sessions/session_types.h +++ b/chrome/browser/sessions/session_types.h @@ -15,10 +15,10 @@ #include "chrome/browser/sessions/session_id.h" #include "components/sessions/serialized_navigation_entry.h" #include "content/public/common/page_transition_types.h" -#include "googleurl/src/gurl.h" #include "sync/protocol/session_specifics.pb.h" #include "ui/base/ui_base_types.h" #include "ui/gfx/rect.h" +#include "url/gurl.h" namespace content { class BrowserContext; diff --git a/chrome/browser/sessions/session_types_unittest.cc b/chrome/browser/sessions/session_types_unittest.cc index 56037fb..6442fbe 100644 --- a/chrome/browser/sessions/session_types_unittest.cc +++ b/chrome/browser/sessions/session_types_unittest.cc @@ -19,11 +19,11 @@ #include "content/public/browser/navigation_entry.h" #include "content/public/common/page_transition_types.h" #include "content/public/common/referrer.h" -#include "googleurl/src/gurl.h" #include "sync/protocol/session_specifics.pb.h" #include "sync/util/time.h" #include "testing/gtest/include/gtest/gtest.h" #include "third_party/WebKit/public/platform/WebReferrerPolicy.h" +#include "url/gurl.h" namespace { diff --git a/chrome/browser/sessions/tab_restore_browsertest.cc b/chrome/browser/sessions/tab_restore_browsertest.cc index a17fd66..1dfa94b 100644 --- a/chrome/browser/sessions/tab_restore_browsertest.cc +++ b/chrome/browser/sessions/tab_restore_browsertest.cc @@ -26,10 +26,10 @@ #include "content/public/browser/page_navigator.h" #include "content/public/browser/render_view_host.h" #include "content/public/browser/web_contents.h" -#include "googleurl/src/gurl.h" #include "net/base/net_util.h" #include "net/test/embedded_test_server/embedded_test_server.h" #include "third_party/WebKit/public/web/WebFindOptions.h" +#include "url/gurl.h" class TabRestoreTest : public InProcessBrowserTest { public: diff --git a/chrome/browser/shell_integration.h b/chrome/browser/shell_integration.h index 09a7945..9abd195 100644 --- a/chrome/browser/shell_integration.h +++ b/chrome/browser/shell_integration.h @@ -11,8 +11,8 @@ #include "base/files/file_path.h" #include "base/memory/ref_counted.h" #include "base/strings/string16.h" -#include "googleurl/src/gurl.h" #include "ui/gfx/image/image_family.h" +#include "url/gurl.h" class CommandLine; diff --git a/chrome/browser/shell_integration_linux.cc b/chrome/browser/shell_integration_linux.cc index 462124f..8ef3320 100644 --- a/chrome/browser/shell_integration_linux.cc +++ b/chrome/browser/shell_integration_linux.cc @@ -36,8 +36,8 @@ #include "chrome/browser/web_applications/web_app.h" #include "chrome/common/chrome_constants.h" #include "content/public/browser/browser_thread.h" -#include "googleurl/src/gurl.h" #include "ui/gfx/image/image_family.h" +#include "url/gurl.h" using content::BrowserThread; diff --git a/chrome/browser/shell_integration_linux.h b/chrome/browser/shell_integration_linux.h index 4cf64c9..2618cf8 100644 --- a/chrome/browser/shell_integration_linux.h +++ b/chrome/browser/shell_integration_linux.h @@ -10,7 +10,7 @@ #include "base/basictypes.h" #include "base/files/file_path.h" #include "chrome/browser/shell_integration.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" namespace base { class Environment; diff --git a/chrome/browser/shell_integration_unittest.cc b/chrome/browser/shell_integration_unittest.cc index 141daee..2d524a4 100644 --- a/chrome/browser/shell_integration_unittest.cc +++ b/chrome/browser/shell_integration_unittest.cc @@ -19,8 +19,8 @@ #include "chrome/browser/web_applications/web_app.h" #include "chrome/common/chrome_constants.h" #include "content/public/test/test_browser_thread.h" -#include "googleurl/src/gurl.h" #include "testing/gtest/include/gtest/gtest.h" +#include "url/gurl.h" #if defined(OS_POSIX) && !defined(OS_MACOSX) #include "base/environment.h" diff --git a/chrome/browser/signin/chrome_signin_manager_delegate.cc b/chrome/browser/signin/chrome_signin_manager_delegate.cc index 71689b9..3354d98 100644 --- a/chrome/browser/signin/chrome_signin_manager_delegate.cc +++ b/chrome/browser/signin/chrome_signin_manager_delegate.cc @@ -5,7 +5,7 @@ #include "chrome/browser/signin/chrome_signin_manager_delegate.h" #include "chrome/browser/content_settings/cookie_settings.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" namespace { diff --git a/chrome/browser/speech/tts_controller.h b/chrome/browser/speech/tts_controller.h index b55600a..18cbcd9 100644 --- a/chrome/browser/speech/tts_controller.h +++ b/chrome/browser/speech/tts_controller.h @@ -12,7 +12,7 @@ #include "base/memory/scoped_ptr.h" #include "base/memory/singleton.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" class Utterance; class TtsPlatformImpl; diff --git a/chrome/browser/spellchecker/feedback_sender.h b/chrome/browser/spellchecker/feedback_sender.h index 855d1b6..286008f 100644 --- a/chrome/browser/spellchecker/feedback_sender.h +++ b/chrome/browser/spellchecker/feedback_sender.h @@ -14,8 +14,8 @@ #include "base/timer/timer.h" #include "chrome/browser/spellchecker/feedback.h" #include "chrome/browser/spellchecker/misspelling.h" -#include "googleurl/src/gurl.h" #include "net/url_request/url_fetcher_delegate.h" +#include "url/gurl.h" class SpellCheckMarker; struct SpellCheckResult; diff --git a/chrome/browser/spellchecker/spellcheck_hunspell_dictionary.cc b/chrome/browser/spellchecker/spellcheck_hunspell_dictionary.cc index 1723293..a6f5169 100644 --- a/chrome/browser/spellchecker/spellcheck_hunspell_dictionary.cc +++ b/chrome/browser/spellchecker/spellcheck_hunspell_dictionary.cc @@ -9,18 +9,18 @@ #include "base/logging.h" #include "base/message_loop.h" #include "base/path_service.h" -#include "chrome/browser/spellchecker/spellcheck_service.h" #include "chrome/browser/spellchecker/spellcheck_platform_mac.h" +#include "chrome/browser/spellchecker/spellcheck_service.h" #include "chrome/common/chrome_paths.h" #include "chrome/common/spellcheck_common.h" #include "chrome/common/spellcheck_messages.h" #include "content/public/browser/browser_thread.h" #include "content/public/browser/render_process_host.h" -#include "googleurl/src/gurl.h" #include "net/base/load_flags.h" #include "net/url_request/url_fetcher.h" #include "net/url_request/url_request_context_getter.h" #include "third_party/hunspell/google/bdict.h" +#include "url/gurl.h" using content::BrowserThread; diff --git a/chrome/browser/spellchecker/spellcheck_service_browsertest.cc b/chrome/browser/spellchecker/spellcheck_service_browsertest.cc index 4c42270..5130600 100644 --- a/chrome/browser/spellchecker/spellcheck_service_browsertest.cc +++ b/chrome/browser/spellchecker/spellcheck_service_browsertest.cc @@ -12,7 +12,7 @@ #include "chrome/common/spellcheck_common.h" #include "chrome/test/base/in_process_browser_test.h" #include "chrome/test/base/ui_test_utils.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" namespace { diff --git a/chrome/browser/ssl/ssl_blocking_page.h b/chrome/browser/ssl/ssl_blocking_page.h index 854b4ff..e0e6d61 100644 --- a/chrome/browser/ssl/ssl_blocking_page.h +++ b/chrome/browser/ssl/ssl_blocking_page.h @@ -12,8 +12,8 @@ #include "base/strings/string16.h" #include "base/time/time.h" #include "content/public/browser/interstitial_page_delegate.h" -#include "googleurl/src/gurl.h" #include "net/ssl/ssl_info.h" +#include "url/gurl.h" namespace base { class DictionaryValue; diff --git a/chrome/browser/ssl/ssl_error_info.cc b/chrome/browser/ssl/ssl_error_info.cc index 0d1cfe8..a6860dd 100644 --- a/chrome/browser/ssl/ssl_error_info.cc +++ b/chrome/browser/ssl/ssl_error_info.cc @@ -8,7 +8,6 @@ #include "base/strings/utf_string_conversions.h" #include "chrome/common/time_format.h" #include "content/public/browser/cert_store.h" -#include "googleurl/src/gurl.h" #include "grit/chromium_strings.h" #include "grit/generated_resources.h" #include "net/base/escape.h" @@ -16,6 +15,7 @@ #include "net/cert/cert_status_flags.h" #include "net/ssl/ssl_info.h" #include "ui/base/l10n/l10n_util.h" +#include "url/gurl.h" SSLErrorInfo::SSLErrorInfo(const string16& title, const string16& details, diff --git a/chrome/browser/sync/glue/favicon_cache.h b/chrome/browser/sync/glue/favicon_cache.h index 4dea3c7..a273aa0 100644 --- a/chrome/browser/sync/glue/favicon_cache.h +++ b/chrome/browser/sync/glue/favicon_cache.h @@ -20,10 +20,10 @@ #include "chrome/common/cancelable_task_tracker.h" #include "content/public/browser/notification_observer.h" #include "content/public/browser/notification_registrar.h" -#include "googleurl/src/gurl.h" #include "sync/api/sync_change.h" #include "sync/api/sync_error_factory.h" #include "sync/api/syncable_service.h" +#include "url/gurl.h" class Profile; diff --git a/chrome/browser/sync/glue/session_model_associator_unittest.cc b/chrome/browser/sync/glue/session_model_associator_unittest.cc index f63e44b..34c01a1 100644 --- a/chrome/browser/sync/glue/session_model_associator_unittest.cc +++ b/chrome/browser/sync/glue/session_model_associator_unittest.cc @@ -20,11 +20,11 @@ #include "content/public/browser/notification_service.h" #include "content/public/common/page_transition_types.h" #include "content/public/test/test_browser_thread.h" -#include "googleurl/src/gurl.h" #include "sync/protocol/session_specifics.pb.h" #include "sync/util/time.h" #include "testing/gmock/include/gmock/gmock.h" #include "testing/gtest/include/gtest/gtest.h" +#include "url/gurl.h" using content::BrowserThread; using sessions::SerializedNavigationEntry; diff --git a/chrome/browser/sync/glue/sync_backend_host.h b/chrome/browser/sync/glue/sync_backend_host.h index 11a0d59..7b054a8 100644 --- a/chrome/browser/sync/glue/sync_backend_host.h +++ b/chrome/browser/sync/glue/sync_backend_host.h @@ -20,7 +20,6 @@ #include "content/public/browser/notification_observer.h" #include "content/public/browser/notification_registrar.h" #include "google_apis/gaia/google_service_auth_error.h" -#include "googleurl/src/gurl.h" #include "sync/internal_api/public/base/model_type.h" #include "sync/internal_api/public/configure_reason.h" #include "sync/internal_api/public/engine/model_safe_worker.h" @@ -33,6 +32,7 @@ #include "sync/notifier/invalidation_handler.h" #include "sync/protocol/encryption.pb.h" #include "sync/protocol/sync_protocol_error.h" +#include "url/gurl.h" class Profile; diff --git a/chrome/browser/sync/glue/sync_backend_host_unittest.cc b/chrome/browser/sync/glue/sync_backend_host_unittest.cc index d694bc0..9f8542b 100644 --- a/chrome/browser/sync/glue/sync_backend_host_unittest.cc +++ b/chrome/browser/sync/glue/sync_backend_host_unittest.cc @@ -22,7 +22,6 @@ #include "content/public/browser/notification_service.h" #include "content/public/test/test_browser_thread.h" #include "google/cacheinvalidation/include/types.h" -#include "googleurl/src/gurl.h" #include "net/url_request/test_url_fetcher_factory.h" #include "sync/internal_api/public/base/model_type.h" #include "sync/internal_api/public/engine/model_safe_worker.h" @@ -36,6 +35,7 @@ #include "sync/util/test_unrecoverable_error_handler.h" #include "testing/gmock/include/gmock/gmock.h" #include "testing/gtest/include/gtest/gtest.h" +#include "url/gurl.h" using content::BrowserThread; using syncer::FakeSyncManager; diff --git a/chrome/browser/sync/glue/typed_url_model_associator_unittest.cc b/chrome/browser/sync/glue/typed_url_model_associator_unittest.cc index ab7d20a..39d3de2 100644 --- a/chrome/browser/sync/glue/typed_url_model_associator_unittest.cc +++ b/chrome/browser/sync/glue/typed_url_model_associator_unittest.cc @@ -13,9 +13,9 @@ #include "chrome/browser/sync/glue/typed_url_model_associator.h" #include "chrome/browser/sync/profile_sync_service_mock.h" #include "content/public/test/test_browser_thread.h" -#include "googleurl/src/gurl.h" #include "sync/protocol/typed_url_specifics.pb.h" #include "testing/gtest/include/gtest/gtest.h" +#include "url/gurl.h" using browser_sync::TypedUrlModelAssociator; using content::BrowserThread; diff --git a/chrome/browser/sync/profile_sync_service.h b/chrome/browser/sync/profile_sync_service.h index 6e9a0e7..18dc129 100644 --- a/chrome/browser/sync/profile_sync_service.h +++ b/chrome/browser/sync/profile_sync_service.h @@ -36,7 +36,6 @@ #include "content/public/browser/notification_registrar.h" #include "content/public/browser/notification_types.h" #include "google_apis/gaia/google_service_auth_error.h" -#include "googleurl/src/gurl.h" #include "net/base/backoff_entry.h" #include "sync/internal_api/public/base/model_type.h" #include "sync/internal_api/public/engine/model_safe_worker.h" @@ -44,6 +43,7 @@ #include "sync/internal_api/public/util/experiments.h" #include "sync/internal_api/public/util/unrecoverable_error_handler.h" #include "sync/js/sync_js_controller.h" +#include "url/gurl.h" class Profile; class ProfileSyncComponentsFactory; diff --git a/chrome/browser/sync/profile_sync_service_session_unittest.cc b/chrome/browser/sync/profile_sync_service_session_unittest.cc index 36a5116..c42edc2 100644 --- a/chrome/browser/sync/profile_sync_service_session_unittest.cc +++ b/chrome/browser/sync/profile_sync_service_session_unittest.cc @@ -42,7 +42,6 @@ #include "content/public/browser/notification_service.h" #include "content/public/test/test_browser_thread.h" #include "google_apis/gaia/gaia_constants.h" -#include "googleurl/src/gurl.h" #include "sync/internal_api/public/base/model_type.h" #include "sync/internal_api/public/change_record.h" #include "sync/internal_api/public/read_node.h" @@ -55,6 +54,7 @@ #include "testing/gmock/include/gmock/gmock.h" #include "testing/gtest/include/gtest/gtest.h" #include "ui/base/ui_base_types.h" +#include "url/gurl.h" using browser_sync::SessionChangeProcessor; using browser_sync::SessionDataTypeController; diff --git a/chrome/browser/sync/profile_sync_service_typed_url_unittest.cc b/chrome/browser/sync/profile_sync_service_typed_url_unittest.cc index 8c71be7..862bb36 100644 --- a/chrome/browser/sync/profile_sync_service_typed_url_unittest.cc +++ b/chrome/browser/sync/profile_sync_service_typed_url_unittest.cc @@ -43,13 +43,13 @@ #include "components/browser_context_keyed_service/refcounted_browser_context_keyed_service.h" #include "content/public/browser/notification_service.h" #include "google_apis/gaia/gaia_constants.h" -#include "googleurl/src/gurl.h" #include "sync/internal_api/public/read_node.h" #include "sync/internal_api/public/read_transaction.h" #include "sync/internal_api/public/write_node.h" #include "sync/internal_api/public/write_transaction.h" #include "sync/protocol/typed_url_specifics.pb.h" #include "testing/gmock/include/gmock/gmock.h" +#include "url/gurl.h" using base::Time; using base::Thread; diff --git a/chrome/browser/sync/test/integration/bookmarks_helper.h b/chrome/browser/sync/test/integration/bookmarks_helper.h index 286974f..f1a62e8 100644 --- a/chrome/browser/sync/test/integration/bookmarks_helper.h +++ b/chrome/browser/sync/test/integration/bookmarks_helper.h @@ -11,9 +11,9 @@ #include "base/compiler_specific.h" #include "chrome/browser/bookmarks/bookmark_model.h" -#include "googleurl/src/gurl.h" #include "testing/gtest/include/gtest/gtest.h" #include "third_party/skia/include/core/SkBitmap.h" +#include "url/gurl.h" class GURL; diff --git a/chrome/browser/sync/test/integration/sessions_helper.cc b/chrome/browser/sync/test/integration/sessions_helper.cc index 37e3eb8..fa90917 100644 --- a/chrome/browser/sync/test/integration/sessions_helper.cc +++ b/chrome/browser/sync/test/integration/sessions_helper.cc @@ -18,7 +18,7 @@ #include "chrome/browser/sync/test/integration/sync_test.h" #include "chrome/browser/ui/singleton_tabs.h" #include "chrome/test/base/ui_test_utils.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" using sync_datatype_helper::test; diff --git a/chrome/browser/sync/test/integration/sync_test.cc b/chrome/browser/sync/test/integration/sync_test.cc index c45ea1e..8d75d64 100644 --- a/chrome/browser/sync/test/integration/sync_test.cc +++ b/chrome/browser/sync/test/integration/sync_test.cc @@ -43,7 +43,6 @@ #include "content/public/browser/web_contents.h" #include "content/public/test/test_browser_thread.h" #include "google_apis/gaia/gaia_urls.h" -#include "googleurl/src/gurl.h" #include "net/base/escape.h" #include "net/base/load_flags.h" #include "net/base/network_change_notifier.h" @@ -60,6 +59,7 @@ #include "sync/engine/sync_scheduler_impl.h" #include "sync/notifier/p2p_invalidator.h" #include "sync/protocol/sync.pb.h" +#include "url/gurl.h" using content::BrowserThread; using invalidation::InvalidationServiceFactory; diff --git a/chrome/browser/sync_file_system/drive_backend/metadata_db_migration_util.cc b/chrome/browser/sync_file_system/drive_backend/metadata_db_migration_util.cc index dda66cd..d7dda53 100644 --- a/chrome/browser/sync_file_system/drive_backend/metadata_db_migration_util.cc +++ b/chrome/browser/sync_file_system/drive_backend/metadata_db_migration_util.cc @@ -7,8 +7,8 @@ #include "base/files/file_path.h" #include "base/memory/scoped_ptr.h" #include "base/strings/string_util.h" -#include "googleurl/src/gurl.h" #include "third_party/leveldatabase/src/include/leveldb/write_batch.h" +#include "url/gurl.h" #include "webkit/browser/fileapi/file_system_url.h" #include "webkit/common/fileapi/file_system_types.h" diff --git a/chrome/browser/sync_file_system/drive_backend/metadata_db_migration_util_unittest.cc b/chrome/browser/sync_file_system/drive_backend/metadata_db_migration_util_unittest.cc index 678a0a9..71099ff 100644 --- a/chrome/browser/sync_file_system/drive_backend/metadata_db_migration_util_unittest.cc +++ b/chrome/browser/sync_file_system/drive_backend/metadata_db_migration_util_unittest.cc @@ -8,10 +8,10 @@ #include "base/strings/string_number_conversions.h" #include "base/strings/string_util.h" #include "chrome/browser/sync_file_system/drive_metadata_store.h" -#include "googleurl/src/gurl.h" #include "testing/gtest/include/gtest/gtest.h" #include "third_party/leveldatabase/src/include/leveldb/db.h" #include "third_party/leveldatabase/src/include/leveldb/write_batch.h" +#include "url/gurl.h" #include "webkit/browser/fileapi/external_mount_points.h" #include "webkit/browser/fileapi/syncable/syncable_file_system_util.h" #include "webkit/common/fileapi/file_system_util.h" diff --git a/chrome/browser/sync_file_system/drive_metadata_store.cc b/chrome/browser/sync_file_system/drive_metadata_store.cc index 5438e1e..8ad9f27 100644 --- a/chrome/browser/sync_file_system/drive_metadata_store.cc +++ b/chrome/browser/sync_file_system/drive_metadata_store.cc @@ -24,9 +24,9 @@ #include "chrome/browser/sync_file_system/file_metadata.h" #include "chrome/browser/sync_file_system/logger.h" #include "chrome/browser/sync_file_system/sync_file_system.pb.h" -#include "googleurl/src/gurl.h" #include "third_party/leveldatabase/src/include/leveldb/db.h" #include "third_party/leveldatabase/src/include/leveldb/write_batch.h" +#include "url/gurl.h" #include "webkit/browser/fileapi/file_system_url.h" #include "webkit/browser/fileapi/syncable/syncable_file_system_util.h" #include "webkit/common/fileapi/file_system_util.h" diff --git a/chrome/browser/sync_file_system/local_file_sync_service.cc b/chrome/browser/sync_file_system/local_file_sync_service.cc index ff8804c..13cbefb7 100644 --- a/chrome/browser/sync_file_system/local_file_sync_service.cc +++ b/chrome/browser/sync_file_system/local_file_sync_service.cc @@ -14,7 +14,7 @@ #include "content/public/browser/browser_thread.h" #include "content/public/browser/site_instance.h" #include "content/public/browser/storage_partition.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" #include "webkit/browser/fileapi/file_system_context.h" #include "webkit/browser/fileapi/file_system_url.h" #include "webkit/browser/fileapi/syncable/file_change.h" diff --git a/chrome/browser/sync_file_system/mock_remote_file_sync_service.cc b/chrome/browser/sync_file_system/mock_remote_file_sync_service.cc index c72041a..0f41b15 100644 --- a/chrome/browser/sync_file_system/mock_remote_file_sync_service.cc +++ b/chrome/browser/sync_file_system/mock_remote_file_sync_service.cc @@ -9,7 +9,7 @@ #include "base/bind.h" #include "base/location.h" #include "base/message_loop/message_loop_proxy.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" #include "webkit/browser/fileapi/file_system_url.h" using ::testing::_; diff --git a/chrome/browser/sync_file_system/mock_remote_file_sync_service.h b/chrome/browser/sync_file_system/mock_remote_file_sync_service.h index 56b11dc..0005f75 100644 --- a/chrome/browser/sync_file_system/mock_remote_file_sync_service.h +++ b/chrome/browser/sync_file_system/mock_remote_file_sync_service.h @@ -14,8 +14,8 @@ #include "chrome/browser/sync_file_system/remote_change_processor.h" #include "chrome/browser/sync_file_system/remote_file_sync_service.h" #include "chrome/browser/sync_file_system/sync_direction.h" -#include "googleurl/src/gurl.h" #include "testing/gmock/include/gmock/gmock.h" +#include "url/gurl.h" #include "webkit/browser/fileapi/syncable/sync_callbacks.h" #include "webkit/browser/fileapi/syncable/sync_file_metadata.h" diff --git a/chrome/browser/sync_file_system/sync_file_system_service.cc b/chrome/browser/sync_file_system/sync_file_system_service.cc index dea092a..a4354d7 100644 --- a/chrome/browser/sync_file_system/sync_file_system_service.cc +++ b/chrome/browser/sync_file_system/sync_file_system_service.cc @@ -26,7 +26,7 @@ #include "content/public/browser/browser_thread.h" #include "content/public/browser/notification_details.h" #include "content/public/browser/notification_service.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" #include "webkit/browser/fileapi/file_system_context.h" #include "webkit/browser/fileapi/syncable/sync_file_metadata.h" #include "webkit/browser/fileapi/syncable/sync_status_code.h" diff --git a/chrome/browser/sync_file_system/sync_file_system_service.h b/chrome/browser/sync_file_system/sync_file_system_service.h index 157ad16..dfc99c3 100644 --- a/chrome/browser/sync_file_system/sync_file_system_service.h +++ b/chrome/browser/sync_file_system/sync_file_system_service.h @@ -23,7 +23,7 @@ #include "components/browser_context_keyed_service/browser_context_keyed_service.h" #include "content/public/browser/notification_observer.h" #include "content/public/browser/notification_registrar.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" #include "webkit/browser/fileapi/syncable/sync_callbacks.h" class ProfileSyncServiceBase; diff --git a/chrome/browser/tab_contents/render_view_context_menu_unittest.cc b/chrome/browser/tab_contents/render_view_context_menu_unittest.cc index be937f2..1728e70 100644 --- a/chrome/browser/tab_contents/render_view_context_menu_unittest.cc +++ b/chrome/browser/tab_contents/render_view_context_menu_unittest.cc @@ -14,9 +14,9 @@ #include "chrome/test/base/testing_profile.h" #include "content/public/browser/web_contents.h" #include "extensions/common/url_pattern.h" -#include "googleurl/src/gurl.h" #include "testing/gtest/include/gtest/gtest.h" #include "third_party/WebKit/public/web/WebContextMenuData.h" +#include "url/gurl.h" using extensions::MenuItem; using extensions::URLPatternSet; diff --git a/chrome/browser/tab_contents/retargeting_details.h b/chrome/browser/tab_contents/retargeting_details.h index ffbd274..108b6a6 100644 --- a/chrome/browser/tab_contents/retargeting_details.h +++ b/chrome/browser/tab_contents/retargeting_details.h @@ -5,7 +5,7 @@ #ifndef CHROME_BROWSER_TAB_CONTENTS_RETARGETING_DETAILS_H_ #define CHROME_BROWSER_TAB_CONTENTS_RETARGETING_DETAILS_H_ -#include "googleurl/src/gurl.h" +#include "url/gurl.h" namespace content { class WebContents; diff --git a/chrome/browser/tab_contents/tab_util.cc b/chrome/browser/tab_contents/tab_util.cc index f855d6a..9d82f22 100644 --- a/chrome/browser/tab_contents/tab_util.cc +++ b/chrome/browser/tab_contents/tab_util.cc @@ -11,7 +11,7 @@ #include "content/public/browser/render_view_host.h" #include "content/public/browser/site_instance.h" #include "content/public/browser/web_contents.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" using content::RenderViewHost; using content::SiteInstance; diff --git a/chrome/browser/tab_contents/view_source_browsertest.cc b/chrome/browser/tab_contents/view_source_browsertest.cc index e7ffe44..83f43b9 100644 --- a/chrome/browser/tab_contents/view_source_browsertest.cc +++ b/chrome/browser/tab_contents/view_source_browsertest.cc @@ -16,8 +16,8 @@ #include "content/public/browser/render_view_host.h" #include "content/public/browser/web_contents.h" #include "content/public/test/browser_test_utils.h" -#include "googleurl/src/gurl.h" #include "net/test/embedded_test_server/embedded_test_server.h" +#include "url/gurl.h" namespace { const char kTestHtml[] = "/viewsource/test.html"; diff --git a/chrome/browser/task_profiler/task_profiler_data_serializer.cc b/chrome/browser/task_profiler/task_profiler_data_serializer.cc index 17679ef..8e93744 100644 --- a/chrome/browser/task_profiler/task_profiler_data_serializer.cc +++ b/chrome/browser/task_profiler/task_profiler_data_serializer.cc @@ -11,7 +11,7 @@ #include "base/tracked_objects.h" #include "content/public/common/content_client.h" #include "content/public/common/process_type.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" using base::DictionaryValue; using base::ListValue; diff --git a/chrome/browser/three_d_api_observer.cc b/chrome/browser/three_d_api_observer.cc index 02e52e9..61b39cf 100644 --- a/chrome/browser/three_d_api_observer.cc +++ b/chrome/browser/three_d_api_observer.cc @@ -11,9 +11,9 @@ #include "content/public/browser/gpu_data_manager.h" #include "content/public/browser/web_contents.h" #include "content/public/common/three_d_api_types.h" -#include "googleurl/src/gurl.h" #include "grit/generated_resources.h" #include "ui/base/l10n/l10n_util.h" +#include "url/gurl.h" // ThreeDAPIInfoBarDelegate --------------------------------------------- diff --git a/chrome/browser/thumbnails/thumbnail_service.h b/chrome/browser/thumbnails/thumbnail_service.h index 9c7e395..11da713 100644 --- a/chrome/browser/thumbnails/thumbnail_service.h +++ b/chrome/browser/thumbnails/thumbnail_service.h @@ -7,8 +7,8 @@ #include "chrome/common/thumbnail_score.h" #include "components/browser_context_keyed_service/refcounted_browser_context_keyed_service.h" -#include "googleurl/src/gurl.h" #include "ui/gfx/image/image.h" +#include "url/gurl.h" namespace base { class RefCountedMemory; diff --git a/chrome/browser/translate/translate_error_details.h b/chrome/browser/translate/translate_error_details.h index 9ea77fc..b2b5506 100644 --- a/chrome/browser/translate/translate_error_details.h +++ b/chrome/browser/translate/translate_error_details.h @@ -7,7 +7,7 @@ #include "base/time/time.h" #include "chrome/common/translate/translate_errors.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" struct TranslateErrorDetails { // The time when this was created diff --git a/chrome/browser/translate/translate_language_list.cc b/chrome/browser/translate/translate_language_list.cc index fdc0ff7..88f0701 100644 --- a/chrome/browser/translate/translate_language_list.cc +++ b/chrome/browser/translate/translate_language_list.cc @@ -19,9 +19,9 @@ #include "chrome/browser/translate/translate_manager.h" #include "chrome/browser/translate/translate_url_fetcher.h" #include "chrome/browser/translate/translate_url_util.h" -#include "googleurl/src/gurl.h" #include "net/base/url_util.h" #include "ui/base/l10n/l10n_util.h" +#include "url/gurl.h" namespace { diff --git a/chrome/browser/translate/translate_manager_unittest.cc b/chrome/browser/translate/translate_manager_unittest.cc index 6b176a1..9073b3a 100644 --- a/chrome/browser/translate/translate_manager_unittest.cc +++ b/chrome/browser/translate/translate_manager_unittest.cc @@ -5,8 +5,8 @@ #include "chrome/browser/translate/translate_manager.h" #include "content/public/common/url_constants.h" -#include "googleurl/src/gurl.h" #include "testing/gtest/include/gtest/gtest.h" +#include "url/gurl.h" #ifdef FILE_MANAGER_EXTENSION #include "chrome/browser/chromeos/extensions/file_manager/file_manager_util.h" diff --git a/chrome/browser/translate/translate_prefs.h b/chrome/browser/translate/translate_prefs.h index bf124d8..f1ce6d4 100644 --- a/chrome/browser/translate/translate_prefs.h +++ b/chrome/browser/translate/translate_prefs.h @@ -9,7 +9,7 @@ #include <vector> #include "base/gtest_prod_util.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" class PrefService; class Profile; diff --git a/chrome/browser/translate/translate_url_fetcher.h b/chrome/browser/translate/translate_url_fetcher.h index 9570ba2..b7d8903 100644 --- a/chrome/browser/translate/translate_url_fetcher.h +++ b/chrome/browser/translate/translate_url_fetcher.h @@ -7,8 +7,8 @@ #include "base/callback.h" #include "base/memory/scoped_ptr.h" -#include "googleurl/src/gurl.h" #include "net/url_request/url_fetcher_delegate.h" +#include "url/gurl.h" class TranslateURLFetcher : public net::URLFetcherDelegate { public: diff --git a/chrome/browser/translate/translate_url_util.h b/chrome/browser/translate/translate_url_util.h index 716903e..9709c0c 100644 --- a/chrome/browser/translate/translate_url_util.h +++ b/chrome/browser/translate/translate_url_util.h @@ -5,7 +5,7 @@ #ifndef CHROME_BROWSER_TRANSLATE_TRANSLATE_URL_UTIL_H_ #define CHROME_BROWSER_TRANSLATE_TRANSLATE_URL_UTIL_H_ -#include "googleurl/src/gurl.h" +#include "url/gurl.h" namespace TranslateURLUtil { diff --git a/chrome/browser/user_style_sheet_watcher.h b/chrome/browser/user_style_sheet_watcher.h index 72b002c..9ab8482 100644 --- a/chrome/browser/user_style_sheet_watcher.h +++ b/chrome/browser/user_style_sheet_watcher.h @@ -13,7 +13,7 @@ #include "components/browser_context_keyed_service/refcounted_browser_context_keyed_service.h" #include "content/public/browser/notification_observer.h" #include "content/public/browser/notification_registrar.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" class Profile; class UserStyleSheetLoader; diff --git a/chrome/browser/web_resource/notification_promo.cc b/chrome/browser/web_resource/notification_promo.cc index 606801d..222f4f5 100644 --- a/chrome/browser/web_resource/notification_promo.cc +++ b/chrome/browser/web_resource/notification_promo.cc @@ -24,8 +24,8 @@ #include "chrome/common/pref_names.h" #include "components/user_prefs/pref_registry_syncable.h" #include "content/public/browser/user_metrics.h" -#include "googleurl/src/gurl.h" #include "net/base/url_util.h" +#include "url/gurl.h" #if defined(OS_ANDROID) #include "base/command_line.h" diff --git a/chrome/browser/web_resource/notification_promo.h b/chrome/browser/web_resource/notification_promo.h index bde22d6..0cc8ace 100644 --- a/chrome/browser/web_resource/notification_promo.h +++ b/chrome/browser/web_resource/notification_promo.h @@ -11,7 +11,7 @@ #include "base/gtest_prod_util.h" #include "base/memory/ref_counted.h" #include "base/memory/scoped_ptr.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" class PrefRegistrySimple; class PrefService; diff --git a/chrome/browser/web_resource/promo_resource_service.cc b/chrome/browser/web_resource/promo_resource_service.cc index 02c1655..2c02f63c 100644 --- a/chrome/browser/web_resource/promo_resource_service.cc +++ b/chrome/browser/web_resource/promo_resource_service.cc @@ -18,7 +18,7 @@ #include "chrome/common/pref_names.h" #include "components/user_prefs/pref_registry_syncable.h" #include "content/public/browser/notification_service.h" -#include "googleurl/src/gurl.h" +#include "url/gurl.h" namespace { diff --git a/chrome/browser/web_resource/web_resource_service.cc b/chrome/browser/web_resource/web_resource_service.cc index 9aa23b5..b483a6e 100644 --- a/chrome/browser/web_resource/web_resource_service.cc +++ b/chrome/browser/web_resource/web_resource_service.cc @@ -14,10 +14,10 @@ #include "base/values.h" #include "chrome/browser/browser_process.h" #include "chrome/browser/google/google_util.h" -#include "googleurl/src/gurl.h" #include "net/base/load_flags.h" #include "net/url_request/url_fetcher.h" #include "net/url_request/url_request_status.h" +#include "url/gurl.h" WebResourceService::WebResourceService( PrefService* prefs, diff --git a/chrome/browser/web_resource/web_resource_service.h b/chrome/browser/web_resource/web_resource_service.h index 9cc4d3c..7acc63a0 100644 --- a/chrome/browser/web_resource/web_resource_service.h +++ b/chrome/browser/web_resource/web_resource_service.h @@ -12,8 +12,8 @@ #include "base/memory/weak_ptr.h" #include "chrome/browser/web_resource/json_asynchronous_unpacker.h" #include "chrome/browser/web_resource/resource_request_allowed_notifier.h" -#include "googleurl/src/gurl.h" #include "net/url_request/url_fetcher_delegate.h" +#include "url/gurl.h" class PrefService; diff --git a/chrome/browser/webdata/keyword_table.cc b/chrome/browser/webdata/keyword_table.cc index 3560bb3..640985e 100644 --- a/chrome/browser/webdata/keyword_table.cc +++ b/chrome/browser/webdata/keyword_table.cc @@ -20,9 +20,9 @@ #include "chrome/browser/search_engines/template_url.h" #include "chrome/browser/search_engines/template_url_service.h" #include "components/webdata/common/web_database.h" -#include "googleurl/src/gurl.h" #include "sql/statement.h" #include "sql/transaction.h" +#include "url/gurl.h" using base::Time; diff --git a/chrome/browser/webdata/web_apps_table.cc b/chrome/browser/webdata/web_apps_table.cc index ac1e305..16d498b 100644 --- a/chrome/browser/webdata/web_apps_table.cc +++ b/chrome/browser/webdata/web_apps_table.cc @@ -7,10 +7,10 @@ #include "base/logging.h" #include "chrome/browser/history/history_database.h" #include "components/webdata/common/web_database.h" -#include "googleurl/src/gurl.h" #include "sql/statement.h" #include "third_party/skia/include/core/SkBitmap.h" #include "ui/gfx/codec/png_codec.h" +#include "url/gurl.h" namespace { diff --git a/chrome/browser/webdata/web_apps_table_unittest.cc b/chrome/browser/webdata/web_apps_table_unittest.cc index 36940a3..3ca084a 100644 --- a/chrome/browser/webdata/web_apps_table_unittest.cc +++ b/chrome/browser/webdata/web_apps_table_unittest.cc @@ -8,9 +8,9 @@ #include "base/time/time.h" #include "chrome/browser/webdata/web_apps_table.h" #include "components/webdata/common/web_database.h" -#include "googleurl/src/gurl.h" #include "testing/gtest/include/gtest/gtest.h" #include "third_party/skia/include/core/SkBitmap.h" +#include "url/gurl.h" using base::Time; diff --git a/chrome/browser/webdata/web_intents_table.cc b/chrome/browser/webdata/web_intents_table.cc index cdd9472..bb57097 100644 --- a/chrome/browser/webdata/web_intents_table.cc +++ b/chrome/browser/webdata/web_intents_table.cc @@ -11,10 +11,10 @@ #include "base/strings/string_util.h" #include "base/strings/utf_string_conversions.h" #include "components/webdata/common/web_database.h" -#include "googleurl/src/gurl.h" #include "net/base/mime_util.h" #include "sql/statement.h" #include "third_party/sqlite/sqlite3.h" +#include "url/gurl.h" namespace { |