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

Side by Side Diff: chrome/browser/extensions/extension_tabs_module_constants.cc

Issue 9456037: Adding run_at to chrome.tabs.executeScript/insertCss. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 9 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/extension_tabs_module_constants.h" 5 #include "chrome/browser/extensions/extension_tabs_module_constants.h"
6 6
7 namespace extension_tabs_module_constants { 7 namespace extension_tabs_module_constants {
8 8
9 const char kActiveKey[] = "active"; 9 const char kActiveKey[] = "active";
10 const char kAllFramesKey[] = "allFrames"; 10 const char kAllFramesKey[] = "allFrames";
(...skipping 13 matching lines...) Expand all
24 const char kLastFocusedWindowKey[] = "lastFocusedWindow"; 24 const char kLastFocusedWindowKey[] = "lastFocusedWindow";
25 const char kLeftKey[] = "left"; 25 const char kLeftKey[] = "left";
26 const char kNewPositionKey[] = "newPosition"; 26 const char kNewPositionKey[] = "newPosition";
27 const char kNewWindowIdKey[] = "newWindowId"; 27 const char kNewWindowIdKey[] = "newWindowId";
28 const char kOldPositionKey[] = "oldPosition"; 28 const char kOldPositionKey[] = "oldPosition";
29 const char kOldWindowIdKey[] = "oldWindowId"; 29 const char kOldWindowIdKey[] = "oldWindowId";
30 const char kOpenerTabIdKey[] = "openerTabId"; 30 const char kOpenerTabIdKey[] = "openerTabId";
31 const char kPinnedKey[] = "pinned"; 31 const char kPinnedKey[] = "pinned";
32 const char kQualityKey[] = "quality"; 32 const char kQualityKey[] = "quality";
33 const char kHighlightedKey[] = "highlighted"; 33 const char kHighlightedKey[] = "highlighted";
34 const char kRunAtKey[] = "runAt";
34 const char kSelectedKey[] = "selected"; 35 const char kSelectedKey[] = "selected";
35 const char kShowStateKey[] = "state"; 36 const char kShowStateKey[] = "state";
36 const char kStatusKey[] = "status"; 37 const char kStatusKey[] = "status";
37 const char kTabIdKey[] = "tabId"; 38 const char kTabIdKey[] = "tabId";
38 const char kTabIdsKey[] = "tabIds"; 39 const char kTabIdsKey[] = "tabIds";
39 const char kTabsKey[] = "tabs"; 40 const char kTabsKey[] = "tabs";
40 const char kTabUrlKey[] = "tabUrl"; 41 const char kTabUrlKey[] = "tabUrl";
41 const char kTitleKey[] = "title"; 42 const char kTitleKey[] = "title";
42 const char kToIndexKey[] = "toIndex"; 43 const char kToIndexKey[] = "toIndex";
43 const char kTopKey[] = "top"; 44 const char kTopKey[] = "top";
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 const char kInvalidWindowStateError[] = "Invalid value for state"; 96 const char kInvalidWindowStateError[] = "Invalid value for state";
96 97
97 const char kNoCodeOrFileToExecuteError[] = "No source code or file specified."; 98 const char kNoCodeOrFileToExecuteError[] = "No source code or file specified.";
98 const char kMoreThanOneValuesError[] = "Code and file should not be specified " 99 const char kMoreThanOneValuesError[] = "Code and file should not be specified "
99 "at the same time in the second argument."; 100 "at the same time in the second argument.";
100 const char kLoadFileError[] = "Failed to load file: \"*\". "; 101 const char kLoadFileError[] = "Failed to load file: \"*\". ";
101 const char kCannotDetermineLanguageOfUnloadedTab[] = 102 const char kCannotDetermineLanguageOfUnloadedTab[] =
102 "Cannot determine language: tab not loaded"; 103 "Cannot determine language: tab not loaded";
103 104
104 } // namespace extension_tabs_module_constants 105 } // namespace extension_tabs_module_constants
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698