Chromium Code Reviews| OLD | NEW |
|---|---|
| (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_ | |
| OLD | NEW |