| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 // This class pulls data from a web resource (such as a JSON feed) which | 5 // This class pulls data from a web resource (such as a JSON feed) which |
| 6 // has been stored in the user's preferences file. Used mainly | 6 // has been stored in the user's preferences file. Used mainly |
| 7 // by the suggestions and tips area of the new tab page. | 7 // by the suggestions and tips area of the new tab page. |
| 8 | 8 |
| 9 // Current sketch of tip cache format, hardcoded for poptart data in | 9 // Current sketch of tip cache format, hardcoded for poptart data in |
| 10 // basic text form: | 10 // basic text form: |
| 11 | 11 |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 DOMUI* dom_ui_; | 47 DOMUI* dom_ui_; |
| 48 | 48 |
| 49 // Filled with data from cache in preferences. | 49 // Filled with data from cache in preferences. |
| 50 const DictionaryValue* web_resource_cache_; | 50 const DictionaryValue* web_resource_cache_; |
| 51 | 51 |
| 52 DISALLOW_COPY_AND_ASSIGN(WebResourceHandler); | 52 DISALLOW_COPY_AND_ASSIGN(WebResourceHandler); |
| 53 }; | 53 }; |
| 54 | 54 |
| 55 #endif // CHROME_BROWSER_DOM_UI_WEB_RESOURCE_HANDLER_H_ | 55 #endif // CHROME_BROWSER_DOM_UI_WEB_RESOURCE_HANDLER_H_ |
| 56 | 56 |
| OLD | NEW |