blob: 1fe7e9f3c8484f1a15fbda03bb72a580be58023c (
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
// Copyright (c) 2012 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_SEARCH_TERMS_DATA_H_
#define CHROME_BROWSER_SEARCH_ENGINES_SEARCH_TERMS_DATA_H_
#include <string>
#include "base/basictypes.h"
#include "base/compiler_specific.h"
#include "base/string16.h"
class Profile;
// All data needed by TemplateURLRef::ReplaceSearchTerms which typically may
// only be accessed on the UI thread.
class SearchTermsData {
public:
SearchTermsData();
virtual ~SearchTermsData();
// Returns the value to use for replacements of type GOOGLE_BASE_URL. This
// implementation simply returns the default value.
virtual std::string GoogleBaseURLValue() const;
// Returns the value for the GOOGLE_BASE_SUGGEST_URL term. This
// implementation simply returns the default value.
std::string GoogleBaseSuggestURLValue() const;
// Returns the locale used by the application. This implementation returns
// "en" and thus should be overridden where the result is actually meaningful.
virtual std::string GetApplicationLocale() const;
#if defined(ENABLE_RLZ)
// Returns the value for the Chrome Omnibox rlz. This implementation returns
// the empty string.
virtual string16 GetRlzParameterValue() const;
#endif
// Returns a string indicating whether Instant (in the visible-preview mode)
// is enabled, suitable for adding as a query string param to the homepage
// (instant_url) request. Returns an empty string if Instant is disabled,
// or if it's only active in a hidden field trial mode. Determining this
// requires accessing the Profile, so this can only ever be non-empty for
// UIThreadSearchTermsData.
virtual std::string InstantEnabledParam() const;
private:
DISALLOW_COPY_AND_ASSIGN(SearchTermsData);
};
// 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 InstantEnabledParam() will return the empty string.
explicit UIThreadSearchTermsData(Profile* profile);
virtual std::string GoogleBaseURLValue() const OVERRIDE;
virtual std::string GetApplicationLocale() const OVERRIDE;
#if defined(ENABLE_RLZ)
virtual string16 GetRlzParameterValue() const OVERRIDE;
#endif
virtual std::string InstantEnabledParam() 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_SEARCH_TERMS_DATA_H_
|