Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2011 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_INTENTS_DEFAULT_INTENT_SERVICE_H_ | |
| 6 #define CHROME_BROWSER_INTENTS_DEFAULT_INTENT_SERVICE_H_ | |
| 7 | |
| 8 #include <string> | |
|
James Hawkins
2012/02/05 05:21:51
nit: Blank line after this.
Greg Billock
2012/02/07 00:45:06
Done.
| |
| 9 #include "base/string16.h" | |
| 10 | |
| 11 // Hold data related to a default settings for web intents service | |
|
James Hawkins
2012/02/05 05:21:51
nit: s/Hold/Holds/
Greg Billock
2012/02/07 00:45:06
Done.
| |
| 12 // selection. Holds data in a row in the web_intents_defaults table. | |
| 13 struct DefaultIntentService { | |
|
James Hawkins
2012/02/05 05:21:51
DefaultWebIntentService
Greg Billock
2012/02/07 00:45:06
Done.
| |
| 14 string16 action; | |
|
James Hawkins
2012/02/05 05:21:51
Document the member variables.
Greg Billock
2012/02/07 00:45:06
Added to class comment.
| |
| 15 string16 type; | |
| 16 std::string url_prefix; | |
| 17 int user_date; | |
| 18 int suppression; | |
| 19 std::string service_url; | |
| 20 std::string extension_url; | |
| 21 }; | |
| 22 | |
| 23 #endif // CHROME_BROWSER_INTENTS_DEFAULT_INTENT_SERVICE_H_ | |
| OLD | NEW |