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

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

Issue 10544023: Moving the tabs_module API into a separate directory in api/ (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Correcting the order of includes. Created 8 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
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/api/tabs/tabs_constants.h"
6 6
7 namespace extension_tabs_module_constants { 7 namespace extensions {
8 namespace tabs_constants {
8 9
9 const char kActiveKey[] = "active"; 10 const char kActiveKey[] = "active";
10 const char kAllFramesKey[] = "allFrames"; 11 const char kAllFramesKey[] = "allFrames";
11 const char kAlwaysOnTopKey[] = "alwaysOnTop"; 12 const char kAlwaysOnTopKey[] = "alwaysOnTop";
12 const char kBypassCache[] = "bypassCache"; 13 const char kBypassCache[] = "bypassCache";
13 const char kCodeKey[] = "code"; 14 const char kCodeKey[] = "code";
14 const char kCurrentWindowKey[] = "currentWindow"; 15 const char kCurrentWindowKey[] = "currentWindow";
15 const char kDrawAttentionKey[] = "drawAttention"; 16 const char kDrawAttentionKey[] = "drawAttention";
16 const char kFaviconUrlKey[] = "favIconUrl"; 17 const char kFaviconUrlKey[] = "favIconUrl";
17 const char kFileKey[] = "file"; 18 const char kFileKey[] = "file";
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 const char kInvalidWindowTypeError[] = "Invalid value for type"; 97 const char kInvalidWindowTypeError[] = "Invalid value for type";
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 tabs_constants
108 } // namespace extensions
OLDNEW
« no previous file with comments | « chrome/browser/extensions/api/tabs/tabs_constants.h ('k') | chrome/browser/extensions/api/tabs/tabs_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698