Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(195)

Side by Side Diff: chrome/test/data/firefox3_profile/README

Issue 247223003: Parsed search.json for importing search engine settings from FireFox. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed unwanted dot(.) from relative path in search.json. Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 The search.sqlite contains a table named |engine_data| which holds information
2 about search engines. The table's data has been modified for the sake of
3 testing. The original content of |engine_data| looked as follows:
4
5 id engineid name value
6 -- ------------------------- ----- -----
7 10 [app]/google.xml order 1
8 11 [app]/yahoo.xml order 2
9 12 [app]/amazondotcom.xml order 3
10 13 [app]/answers.xml order 4
11 14 [app]/creativecommons.xml order 5
12 15 [app]/eBay.xml order 6
13 16 [profile]/flickr-tags.xml order 7
14 17 [profile]/imdb.xml order 8
15 18 [profile]/webster.xml order 9
16 19 [app]/wikipedia.xml order 10
17
18 The |engineid| contains [app]/<name>.xml or [profile]/<name>.xml where
19 the [app] and [profile] need to be replaced with the actual app or profile
20 path. The actual app or profile path varies with operating system. To make
21 the browser test independant of machine's environment, [app] and [profile]
22 is replaced with relative path as follows:
23
24 [app] => ./chrome/test/data/firefox3_profile/searchplugins/default
25 [profile] => ./chrome/test/data/firefox3_profile/searchplugins/installed
26
27 To respect the relative path in test data, all default and installed search
28 engines XMLs are placed in searchplugins/default and searchplugins/installed
29 directory respectively.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698