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

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, 8 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 14 matching lines...) Expand all
25 const char kLastFocusedWindowKey[] = "lastFocusedWindow"; 25 const char kLastFocusedWindowKey[] = "lastFocusedWindow";
26 const char kLeftKey[] = "left"; 26 const char kLeftKey[] = "left";
27 const char kNewPositionKey[] = "newPosition"; 27 const char kNewPositionKey[] = "newPosition";
28 const char kNewWindowIdKey[] = "newWindowId"; 28 const char kNewWindowIdKey[] = "newWindowId";
29 const char kOldPositionKey[] = "oldPosition"; 29 const char kOldPositionKey[] = "oldPosition";
30 const char kOldWindowIdKey[] = "oldWindowId"; 30 const char kOldWindowIdKey[] = "oldWindowId";
31 const char kOpenerTabIdKey[] = "openerTabId"; 31 const char kOpenerTabIdKey[] = "openerTabId";
32 const char kPinnedKey[] = "pinned"; 32 const char kPinnedKey[] = "pinned";
33 const char kQualityKey[] = "quality"; 33 const char kQualityKey[] = "quality";
34 const char kHighlightedKey[] = "highlighted"; 34 const char kHighlightedKey[] = "highlighted";
35 const char kRunAtKey[] = "runAt";
35 const char kSelectedKey[] = "selected"; 36 const char kSelectedKey[] = "selected";
36 const char kShowStateKey[] = "state"; 37 const char kShowStateKey[] = "state";
37 const char kStatusKey[] = "status"; 38 const char kStatusKey[] = "status";
38 const char kTabIdKey[] = "tabId"; 39 const char kTabIdKey[] = "tabId";
39 const char kTabIdsKey[] = "tabIds"; 40 const char kTabIdsKey[] = "tabIds";
40 const char kTabsKey[] = "tabs"; 41 const char kTabsKey[] = "tabs";
41 const char kTabUrlKey[] = "tabUrl"; 42 const char kTabUrlKey[] = "tabUrl";
42 const char kTitleKey[] = "title"; 43 const char kTitleKey[] = "title";
43 const char kToIndexKey[] = "toIndex"; 44 const char kToIndexKey[] = "toIndex";
44 const char kTopKey[] = "top"; 45 const char kTopKey[] = "top";
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 const char kInvalidWindowStateError[] = "Invalid value for state"; 98 const char kInvalidWindowStateError[] = "Invalid value for state";
98 99
99 const char kNoCodeOrFileToExecuteError[] = "No source code or file specified."; 100 const char kNoCodeOrFileToExecuteError[] = "No source code or file specified.";
100 const char kMoreThanOneValuesError[] = "Code and file should not be specified " 101 const char kMoreThanOneValuesError[] = "Code and file should not be specified "
101 "at the same time in the second argument."; 102 "at the same time in the second argument.";
102 const char kLoadFileError[] = "Failed to load file: \"*\". "; 103 const char kLoadFileError[] = "Failed to load file: \"*\". ";
103 const char kCannotDetermineLanguageOfUnloadedTab[] = 104 const char kCannotDetermineLanguageOfUnloadedTab[] =
104 "Cannot determine language: tab not loaded"; 105 "Cannot determine language: tab not loaded";
105 106
106 } // namespace extension_tabs_module_constants 107 } // namespace extension_tabs_module_constants
OLDNEW
« no previous file with comments | « chrome/browser/extensions/extension_tabs_module_constants.h ('k') | chrome/chrome_renderer.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698