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

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

Issue 173556: Implement script API:executeScript (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 11 years, 3 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) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 // Constants used for the Tabs API and the Windows API. 5 // Constants used for the Tabs API and the Windows API.
6 6
7 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_TABS_MODULE_CONSTANTS_H_ 7 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_TABS_MODULE_CONSTANTS_H_
8 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_TABS_MODULE_CONSTANTS_H_ 8 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_TABS_MODULE_CONSTANTS_H_
9 9
10 namespace extension_tabs_module_constants { 10 namespace extension_tabs_module_constants {
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 // Function names, Tabs API. 61 // Function names, Tabs API.
62 extern const char kGetTabFunction[]; 62 extern const char kGetTabFunction[];
63 extern const char kGetSelectedTabFunction[]; 63 extern const char kGetSelectedTabFunction[];
64 extern const char kGetAllTabsInWindowFunction[]; 64 extern const char kGetAllTabsInWindowFunction[];
65 extern const char kCreateTabFunction[]; 65 extern const char kCreateTabFunction[];
66 extern const char kUpdateTabFunction[]; 66 extern const char kUpdateTabFunction[];
67 extern const char kMoveTabFunction[]; 67 extern const char kMoveTabFunction[];
68 extern const char kRemoveTabFunction[]; 68 extern const char kRemoveTabFunction[];
69 extern const char kDetectTabLanguageFunction[]; 69 extern const char kDetectTabLanguageFunction[];
70 extern const char kCaptureVisibleTabFunction[]; 70 extern const char kCaptureVisibleTabFunction[];
71 extern const char kExecuteScriptFunction[];
72 extern const char kInsertCSSFunction[];
73 extern const char kNoCodeOrFileToExecuteError[];
74 extern const char kMoreThanOneValuesError[];
75 extern const char kLoadFileError[];
71 76
72 }; // namespace extension_tabs_module_constants 77 }; // namespace extension_tabs_module_constants
73 78
74 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_TABS_MODULE_CONSTANTS_H_ 79 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_TABS_MODULE_CONSTANTS_H_
OLDNEW
« no previous file with comments | « chrome/browser/extensions/extension_tabs_module.cc ('k') | chrome/browser/extensions/extension_tabs_module_constants.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698