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

Side by Side Diff: chrome/browser/extensions/api/tabs/tabs_constants.cc

Issue 23377002: Clean up windows API implementations to use JSON compiler generated code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 4 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
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #include "chrome/browser/extensions/api/tabs/tabs_constants.h" 5 #include "chrome/browser/extensions/api/tabs/tabs_constants.h"
6 6
7 namespace extensions { 7 namespace extensions {
8 namespace tabs_constants { 8 namespace tabs_constants {
9 9
10 const char kActiveKey[] = "active"; 10 const char kActiveKey[] = "active";
11 const char kAllFramesKey[] = "allFrames"; 11 const char kAllFramesKey[] = "allFrames";
12 const char kAlwaysOnTopKey[] = "alwaysOnTop"; 12 const char kAlwaysOnTopKey[] = "alwaysOnTop";
13 const char kBypassCache[] = "bypassCache"; 13 const char kBypassCache[] = "bypassCache";
14 const char kCodeKey[] = "code"; 14 const char kCodeKey[] = "code";
15 const char kCurrentWindowKey[] = "currentWindow"; 15 const char kCurrentWindowKey[] = "currentWindow";
16 const char kDrawAttentionKey[] = "drawAttention";
17 const char kFaviconUrlKey[] = "favIconUrl"; 16 const char kFaviconUrlKey[] = "favIconUrl";
18 const char kFileKey[] = "file"; 17 const char kFileKey[] = "file";
19 const char kFocusedKey[] = "focused"; 18 const char kFocusedKey[] = "focused";
20 const char kFormatKey[] = "format"; 19 const char kFormatKey[] = "format";
21 const char kFromIndexKey[] = "fromIndex"; 20 const char kFromIndexKey[] = "fromIndex";
22 const char kHeightKey[] = "height"; 21 const char kHeightKey[] = "height";
23 const char kIdKey[] = "id"; 22 const char kIdKey[] = "id";
24 const char kIncognitoKey[] = "incognito"; 23 const char kIncognitoKey[] = "incognito";
25 const char kIndexKey[] = "index"; 24 const char kIndexKey[] = "index";
26 const char kLastFocusedWindowKey[] = "lastFocusedWindow"; 25 const char kLastFocusedWindowKey[] = "lastFocusedWindow";
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 100
102 const char kNoCodeOrFileToExecuteError[] = "No source code or file specified."; 101 const char kNoCodeOrFileToExecuteError[] = "No source code or file specified.";
103 const char kMoreThanOneValuesError[] = "Code and file should not be specified " 102 const char kMoreThanOneValuesError[] = "Code and file should not be specified "
104 "at the same time in the second argument."; 103 "at the same time in the second argument.";
105 const char kLoadFileError[] = "Failed to load file: \"*\". "; 104 const char kLoadFileError[] = "Failed to load file: \"*\". ";
106 const char kCannotDetermineLanguageOfUnloadedTab[] = 105 const char kCannotDetermineLanguageOfUnloadedTab[] =
107 "Cannot determine language: tab not loaded"; 106 "Cannot determine language: tab not loaded";
108 107
109 } // namespace tabs_constants 108 } // namespace tabs_constants
110 } // namespace extensions 109 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698