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

Side by Side Diff: chrome/browser/search/contextual_search_promo_source.h

Issue 450543002: Make ContextualSearchPromoSource Android-only. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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 | Annotate | Revision Log
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_SEARCH_CONTEXTUAL_SEARCH_PROMO_SOURCE_H_
6 #define CHROME_BROWSER_SEARCH_CONTEXTUAL_SEARCH_PROMO_SOURCE_H_
7
8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h"
10 #include "content/public/browser/url_data_source.h"
11
12 // Serves HTML for displaying the contextual search first-run promo.
13 class ContextualSearchPromoSource : public content::URLDataSource {
14 public:
15 ContextualSearchPromoSource();
16 virtual ~ContextualSearchPromoSource();
17
18 protected:
19 // Overridden from content::URLDataSource:
20 virtual void StartDataRequest(
21 const std::string& path_and_query,
22 int render_process_id,
23 int render_frame_id,
24 const content::URLDataSource::GotDataCallback& callback) OVERRIDE;
25 virtual std::string GetSource() const OVERRIDE;
26 virtual std::string GetMimeType(
27 const std::string& path_and_query) const OVERRIDE;
28 virtual bool ShouldDenyXFrameOptions() const OVERRIDE;
29 virtual bool ShouldAddContentSecurityPolicy() const OVERRIDE;
30
31 // Sends unmodified resource bytes.
32 void SendResource(
33 int resource_id,
34 const content::URLDataSource::GotDataCallback& callback);
35
36 // Sends HTML with localized strings.
37 void SendHtmlWithStrings(
38 const content::URLDataSource::GotDataCallback& callback);
39
40 private:
41 DISALLOW_COPY_AND_ASSIGN(ContextualSearchPromoSource);
42 };
43
44 #endif // CHROME_BROWSER_SEARCH_CONTEXTUAL_SEARCH_PROMO_SOURCE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698