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

Side by Side Diff: components/search_engines/search_terms_data.h

Issue 1609293003: Removing WKWebViewSearchParam (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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
« no previous file with comments | « no previous file | components/search_engines/search_terms_data.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/compiler_specific.h" 10 #include "base/compiler_specific.h"
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 // This implementation returns the empty string. 49 // This implementation returns the empty string.
50 virtual std::string GetSuggestRequestIdentifier() const; 50 virtual std::string GetSuggestRequestIdentifier() const;
51 51
52 // Returns a string indicating whether InstantExtended is enabled. 52 // Returns a string indicating whether InstantExtended is enabled.
53 virtual std::string InstantExtendedEnabledParam(bool for_search) const; 53 virtual std::string InstantExtendedEnabledParam(bool for_search) const;
54 54
55 // Returns a string that will cause the search results page to update 55 // Returns a string that will cause the search results page to update
56 // incrementally. 56 // incrementally.
57 virtual std::string ForceInstantResultsParam(bool for_prerender) const; 57 virtual std::string ForceInstantResultsParam(bool for_prerender) const;
58 58
59 // Returns a string indicating which webview is currently in use on iOS,
60 // suitable for adding as a query string param to search requests. Returns an
61 // empty string if no parameter should be passed along with search requests.
62 virtual std::string IOSWebViewTypeParam() const;
63
64 // Returns the value to use for replacements of type 59 // Returns the value to use for replacements of type
65 // GOOGLE_IMAGE_SEARCH_SOURCE. 60 // GOOGLE_IMAGE_SEARCH_SOURCE.
66 virtual std::string GoogleImageSearchSource() const; 61 virtual std::string GoogleImageSearchSource() const;
67 62
68 // Returns a string with languages understood by the user. 63 // Returns a string with languages understood by the user.
69 // Determining this requires accessing the Profile, so this can only ever be 64 // Determining this requires accessing the Profile, so this can only ever be
70 // non-empty for UIThreadSearchTermsData. 65 // non-empty for UIThreadSearchTermsData.
71 virtual std::string GetAcceptLanguages() const; 66 virtual std::string GetAcceptLanguages() const;
72 67
73 private: 68 private:
74 DISALLOW_COPY_AND_ASSIGN(SearchTermsData); 69 DISALLOW_COPY_AND_ASSIGN(SearchTermsData);
75 }; 70 };
76 71
77 #endif // COMPONENTS_SEARCH_ENGINES_SEARCH_TERMS_DATA_H_ 72 #endif // COMPONENTS_SEARCH_ENGINES_SEARCH_TERMS_DATA_H_
OLDNEW
« no previous file with comments | « no previous file | components/search_engines/search_terms_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698