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

Side by Side Diff: chrome/browser/spellchecker/spellcheck_action.h

Issue 15906011: Use a direct include of strings headers in chrome/browser/r*-s*/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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 #ifndef CHROME_BROWSER_SPELLCHECKER_SPELLCHECK_ACTION_H_ 5 #ifndef CHROME_BROWSER_SPELLCHECKER_SPELLCHECK_ACTION_H_
6 #define CHROME_BROWSER_SPELLCHECKER_SPELLCHECK_ACTION_H_ 6 #define CHROME_BROWSER_SPELLCHECKER_SPELLCHECK_ACTION_H_
7 7
8 #include "base/string16.h" 8 #include "base/strings/string16.h"
9 9
10 namespace base { 10 namespace base {
11 class DictionaryValue; 11 class DictionaryValue;
12 } 12 }
13 13
14 // User's action on a misspelled word. 14 // User's action on a misspelled word.
15 class SpellcheckAction { 15 class SpellcheckAction {
16 public: 16 public:
17 // Type of spellcheck action. 17 // Type of spellcheck action.
18 enum SpellcheckActionType { 18 enum SpellcheckActionType {
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 SpellcheckActionType type; 66 SpellcheckActionType type;
67 67
68 // The index for the user action, if applicable. 68 // The index for the user action, if applicable.
69 int index; 69 int index;
70 70
71 // The value for the user action, if applicable. 71 // The value for the user action, if applicable.
72 string16 value; 72 string16 value;
73 }; 73 };
74 74
75 #endif // CHROME_BROWSER_SPELLCHECKER_SPELLCHECK_ACTION_H_ 75 #endif // CHROME_BROWSER_SPELLCHECKER_SPELLCHECK_ACTION_H_
OLDNEW
« no previous file with comments | « chrome/browser/spellchecker/feedback_sender_unittest.cc ('k') | chrome/browser/spellchecker/spellcheck_platform_mac.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698