OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef COMPONENTS_SEARCH_ENGINES_SEARCH_TERMS_DATA_H_ | 5 #ifndef COMPONENTS_SEARCH_ENGINES_SEARCH_TERMS_DATA_H_ |
6 #define COMPONENTS_SEARCH_ENGINES_SEARCH_TERMS_DATA_H_ | 6 #define COMPONENTS_SEARCH_ENGINES_SEARCH_TERMS_DATA_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 // Returns the start-edge margin of the omnibox in pixels. | 63 // Returns the start-edge margin of the omnibox in pixels. |
64 virtual int OmniboxStartMargin() const; | 64 virtual int OmniboxStartMargin() const; |
65 | 65 |
66 // Returns a string indicating whether a non-default theme is active, | 66 // Returns a string indicating whether a non-default theme is active, |
67 // suitable for adding as a query string param to the homepage. This only | 67 // suitable for adding as a query string param to the homepage. This only |
68 // applies if Instant Extended is enabled. Returns an empty string otherwise. | 68 // applies if Instant Extended is enabled. Returns an empty string otherwise. |
69 // Determining this requires accessing the Profile, so this can only ever be | 69 // Determining this requires accessing the Profile, so this can only ever be |
70 // non-empty for UIThreadSearchTermsData. | 70 // non-empty for UIThreadSearchTermsData. |
71 virtual std::string NTPIsThemedParam() const; | 71 virtual std::string NTPIsThemedParam() const; |
72 | 72 |
| 73 // Returns a string indicating which webview is currently in use on iOS, |
| 74 // suitable for adding as a query string param to search requests. Returns an |
| 75 // empty string if no parameter should be passed along with search requests. |
| 76 virtual std::string IOSWebViewTypeParam() const; |
| 77 |
73 // Returns the value to use for replacements of type | 78 // Returns the value to use for replacements of type |
74 // GOOGLE_IMAGE_SEARCH_SOURCE. | 79 // GOOGLE_IMAGE_SEARCH_SOURCE. |
75 virtual std::string GoogleImageSearchSource() const; | 80 virtual std::string GoogleImageSearchSource() const; |
76 | 81 |
77 // Returns a string with languages understood by the user. | 82 // Returns a string with languages understood by the user. |
78 // Determining this requires accessing the Profile, so this can only ever be | 83 // Determining this requires accessing the Profile, so this can only ever be |
79 // non-empty for UIThreadSearchTermsData. | 84 // non-empty for UIThreadSearchTermsData. |
80 virtual std::string GetAcceptLanguages() const; | 85 virtual std::string GetAcceptLanguages() const; |
81 | 86 |
82 private: | 87 private: |
83 DISALLOW_COPY_AND_ASSIGN(SearchTermsData); | 88 DISALLOW_COPY_AND_ASSIGN(SearchTermsData); |
84 }; | 89 }; |
85 | 90 |
86 #endif // COMPONENTS_SEARCH_ENGINES_SEARCH_TERMS_DATA_H_ | 91 #endif // COMPONENTS_SEARCH_ENGINES_SEARCH_TERMS_DATA_H_ |
OLD | NEW |