diff options
author | jered@chromium.org <jered@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-08-19 21:05:12 +0000 |
---|---|---|
committer | jered@chromium.org <jered@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-08-19 21:05:12 +0000 |
commit | 041238dd89de5d33c6fd999bffb05763371ba86c (patch) | |
tree | 4274a3c3e31fc8b71799c2332f4288975b92feb3 /sync | |
parent | 6ac871ead3c0de8b88f86dc01e3a182c2ec96a36 (diff) | |
download | chromium_src-041238dd89de5d33c6fd999bffb05763371ba86c.zip chromium_src-041238dd89de5d33c6fd999bffb05763371ba86c.tar.gz chromium_src-041238dd89de5d33c6fd999bffb05763371ba86c.tar.bz2 |
InstantExtended: Persist TemplateURL.new_tab_url.
Save new tab URL in prefs, web_data/keywords and policy. This is built
on http://crrev.com/22945004
BUG=271084
TEST=unit_tests and browsertest
R=atwilson@chromium.org, pkasting@chromium.org
Review URL: https://codereview.chromium.org/23009005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@218316 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'sync')
-rw-r--r-- | sync/protocol/proto_value_conversions.cc | 1 | ||||
-rw-r--r-- | sync/protocol/search_engine_specifics.proto | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/sync/protocol/proto_value_conversions.cc b/sync/protocol/proto_value_conversions.cc index 4431357..f4fe44d 100644 --- a/sync/protocol/proto_value_conversions.cc +++ b/sync/protocol/proto_value_conversions.cc @@ -550,6 +550,7 @@ base::DictionaryValue* SearchEngineSpecificsToValue( SET_STR(suggestions_url_post_params); SET_STR(instant_url_post_params); SET_STR(image_url_post_params); + SET_STR(new_tab_url); return value; } diff --git a/sync/protocol/search_engine_specifics.proto b/sync/protocol/search_engine_specifics.proto index 26c5bec..8db631c 100644 --- a/sync/protocol/search_engine_specifics.proto +++ b/sync/protocol/search_engine_specifics.proto @@ -75,5 +75,8 @@ message SearchEngineSpecifics { optional string suggestions_url_post_params = 23; optional string instant_url_post_params = 24; optional string image_url_post_params = 25; + + // The parameterized URL for a search provider specified new tab page. + optional string new_tab_url = 26; } |