diff options
author | stuartmorgan@chromium.org <stuartmorgan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-10 10:01:07 +0000 |
---|---|---|
committer | stuartmorgan@chromium.org <stuartmorgan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-10 10:01:07 +0000 |
commit | f87d7cb4ec8002c3df07e74dc9b31afcf4ad8b7d (patch) | |
tree | 51d2b71b54eff946dbceec119d47d23358960f82 /chrome_frame/html_utils.cc | |
parent | 5e194bc61b0c8a3072fb4a0d73106717ceba667e (diff) | |
download | chromium_src-f87d7cb4ec8002c3df07e74dc9b31afcf4ad8b7d.zip chromium_src-f87d7cb4ec8002c3df07e74dc9b31afcf4ad8b7d.tar.gz chromium_src-f87d7cb4ec8002c3df07e74dc9b31afcf4ad8b7d.tar.bz2 |
Split user agent code out of the 'glue' target
This creates a new user_agent component target for the user agent handling code. This makes it straightforward for iOS to build only the user-agent part of glue. It should also make incremental dismantling of webkit/ easier, since the dependencies on user agent code are now explicit.
The code that was in user_agent.cc/h (the webkit_user_agent target) has been moved to user_agent_util.cc/h, and folded into the user_agent component target. All user-agent related code has been moved to a new webkit/user_agent/ directory.
BUG=None
Review URL: https://chromiumcodereview.appspot.com/10869073
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@155695 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame/html_utils.cc')
-rw-r--r-- | chrome_frame/html_utils.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome_frame/html_utils.cc b/chrome_frame/html_utils.cc index 6892ede..3192f14 100644 --- a/chrome_frame/html_utils.cc +++ b/chrome_frame/html_utils.cc @@ -13,7 +13,7 @@ #include "chrome/common/chrome_version_info.h" #include "chrome_frame/utils.h" #include "net/base/net_util.h" -#include "webkit/glue/user_agent.h" +#include "webkit/user_agent/user_agent_util.h" const wchar_t kQuotes[] = L"\"'"; const char kXFrameOptionsHeader[] = "X-Frame-Options"; |