blob: 259978b5661104445ac44518dd2f6ad933bb1bf5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_SEARCH_ENGINES_UI_THREAD_SEARCH_TERMS_DATA_H_
#define CHROME_BROWSER_SEARCH_ENGINES_UI_THREAD_SEARCH_TERMS_DATA_H_
#include <string>
#include "base/basictypes.h"
#include "base/compiler_specific.h"
#include "base/strings/string16.h"
#include "components/search_engines/search_terms_data.h"
class Profile;
// Implementation of SearchTermsData that is only usable on the UI thread.
class UIThreadSearchTermsData : public SearchTermsData {
public:
// If |profile_| is NULL, the Google base URL accessors will return default
// values, and NTPIsThemedParam() will return an empty string.
explicit UIThreadSearchTermsData(Profile* profile);
virtual std::string GoogleBaseURLValue() const OVERRIDE;
virtual std::string GetApplicationLocale() const OVERRIDE;
virtual base::string16 GetRlzParameterValue(bool from_app_list) const
OVERRIDE;
virtual std::string GetSearchClient() const OVERRIDE;
virtual std::string GetSuggestClient() const OVERRIDE;
virtual std::string GetSuggestRequestIdentifier() const OVERRIDE;
virtual bool EnableAnswersInSuggest() const OVERRIDE;
virtual bool IsShowingSearchTermsOnSearchResultsPages() const OVERRIDE;
virtual std::string InstantExtendedEnabledParam(
bool for_search) const OVERRIDE;
virtual std::string ForceInstantResultsParam(
bool for_prerender) const OVERRIDE;
virtual int OmniboxStartMargin() const OVERRIDE;
virtual std::string NTPIsThemedParam() const OVERRIDE;
virtual std::string GoogleImageSearchSource() const OVERRIDE;
// Used by tests to override the value for the Google base URL. Passing the
// empty string cancels this override.
static void SetGoogleBaseURL(const std::string& base_url);
private:
static std::string* google_base_url_;
Profile* profile_;
DISALLOW_COPY_AND_ASSIGN(UIThreadSearchTermsData);
};
#endif // CHROME_BROWSER_SEARCH_ENGINES_UI_THREAD_SEARCH_TERMS_DATA_H_
|