diff options
author | michaelbai@google.com <michaelbai@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-17 18:02:13 +0000 |
---|---|---|
committer | michaelbai@google.com <michaelbai@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-17 18:02:13 +0000 |
commit | 42054a25f34cbdd76877b52cca653443ea51c447 (patch) | |
tree | 3fec2965dd97b7219082f65bc3bcbcb5c0ebfc3e /chrome/common/chrome_constants.cc | |
parent | 18cb0c4ef00c8b4c563b38a7401e1c2c0bce4710 (diff) | |
download | chromium_src-42054a25f34cbdd76877b52cca653443ea51c447.zip chromium_src-42054a25f34cbdd76877b52cca653443ea51c447.tar.gz chromium_src-42054a25f34cbdd76877b52cca653443ea51c447.tar.bz2 |
Adapt to new icon interface from WebFrame
- Adapt to the new icon methods from both WebFrame and
WebFrameClient.
- Touch icons will be fetched and stored if kEnableTouchIcon=1,
Currently it is disabled by default.
- Moved the kEnableTouchIcon definition to chrome_constants
so it could be seen in both browser and renderer code.
BUG=71571
TEST=Tested by existent unit test.
Review URL: http://codereview.chromium.org/7032013
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@85651 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/chrome_constants.cc')
-rw-r--r-- | chrome/common/chrome_constants.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/chrome/common/chrome_constants.cc b/chrome/common/chrome_constants.cc index 6cd9514..ff21c5a 100644 --- a/chrome/common/chrome_constants.cc +++ b/chrome/common/chrome_constants.cc @@ -133,6 +133,8 @@ const char* const kUnknownLanguageCode = "und"; const int kJavascriptMessageExpectedDelay = 1000; +const bool kEnableTouchIcon = false; + } // namespace chrome #undef FPL |