diff options
author | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-29 17:53:21 +0000 |
---|---|---|
committer | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-29 17:53:21 +0000 |
commit | 90085af068d552aa301e2ea7408cb6847cdc591e (patch) | |
tree | e7ed2538a78794a32a5bcce47ab7505e7b4bf4c1 /chrome/test | |
parent | ebdc76943e8909d261b6d776ed973a16c0086341 (diff) | |
download | chromium_src-90085af068d552aa301e2ea7408cb6847cdc591e.zip chromium_src-90085af068d552aa301e2ea7408cb6847cdc591e.tar.gz chromium_src-90085af068d552aa301e2ea7408cb6847cdc591e.tar.bz2 |
Factor search vs. navigate classification into its own file to make it more broadly usable. Patch by Thiago Farina (see http://codereview.chromium.org/328031 ), r=me.
BUG=21317
TEST=none
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30473 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test')
-rw-r--r-- | chrome/test/testing_profile.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/chrome/test/testing_profile.h b/chrome/test/testing_profile.h index 8791295..adbb7dd4 100644 --- a/chrome/test/testing_profile.h +++ b/chrome/test/testing_profile.h @@ -98,6 +98,9 @@ class TestingProfile : public Profile { void set_has_history_service(bool has_history_service) { has_history_service_ = has_history_service; } + virtual SearchVersusNavigateClassifier* GetSearchVersusNavigateClassifier() { + return NULL; + } virtual WebDataService* GetWebDataService(ServiceAccessType access) { return NULL; } |