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

Side by Side Diff: chrome/browser/search/one_google_bar/one_google_bar_data.h

Issue 2814753002: Local NTP: Introduce OneGoogleBarFetcher (Closed)
Patch Set: copy ctor Created 3 years, 8 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
OLDNEW
(Empty)
1 // Copyright 2017 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_ONE_GOOGLE_BAR_ONE_GOOGLE_BAR_DATA_H_
6 #define CHROME_BROWSER_SEARCH_ONE_GOOGLE_BAR_ONE_GOOGLE_BAR_DATA_H_
7
8 #include <string>
9
10 struct OneGoogleBarData {
11 OneGoogleBarData();
12 OneGoogleBarData(const OneGoogleBarData&);
13 ~OneGoogleBarData();
14
15 std::string bar_html;
16
17 std::string in_head_script;
18 std::string in_head_noscript;
sfiera 2017/04/12 17:25:47 Comments? I can guess what most of these are, but
Marc Treib 2017/04/13 09:03:34 It's for a <noscript> tag :) https://www.w3school
19 std::string in_head_style;
20 std::string after_bar_script;
21 std::string end_of_body_html;
22 std::string end_of_body_script;
23
24 // Copying and assignment allowed.
25 };
26
27 #endif // CHROME_BROWSER_SEARCH_ONE_GOOGLE_BAR_ONE_GOOGLE_BAR_DATA_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698