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

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

Issue 9328037: Add fullscreen state support for chrome.windows (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased onto ToT Created 8 years, 10 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) 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 const char kWindowTypeKey[] = "type"; 46 const char kWindowTypeKey[] = "type";
47 const char kWindowTypeLongKey[] = "windowType"; 47 const char kWindowTypeLongKey[] = "windowType";
48 48
49 const char kFormatValueJpeg[] = "jpeg"; 49 const char kFormatValueJpeg[] = "jpeg";
50 const char kFormatValuePng[] = "png"; 50 const char kFormatValuePng[] = "png";
51 const char kMimeTypeJpeg[] = "image/jpeg"; 51 const char kMimeTypeJpeg[] = "image/jpeg";
52 const char kMimeTypePng[] = "image/png"; 52 const char kMimeTypePng[] = "image/png";
53 const char kShowStateValueNormal[] = "normal"; 53 const char kShowStateValueNormal[] = "normal";
54 const char kShowStateValueMinimized[] = "minimized"; 54 const char kShowStateValueMinimized[] = "minimized";
55 const char kShowStateValueMaximized[] = "maximized"; 55 const char kShowStateValueMaximized[] = "maximized";
56 const char kShowStateValueFullscreen[] = "fullscreen";
56 const char kStatusValueComplete[] = "complete"; 57 const char kStatusValueComplete[] = "complete";
57 const char kStatusValueLoading[] = "loading"; 58 const char kStatusValueLoading[] = "loading";
58 59
59 // TODO(mpcomplete): should we expose more specific detail, like devtools, app 60 // TODO(mpcomplete): should we expose more specific detail, like devtools, app
60 // panel, etc? 61 // panel, etc?
61 const char kWindowTypeValueNormal[] = "normal"; 62 const char kWindowTypeValueNormal[] = "normal";
62 const char kWindowTypeValuePopup[] = "popup"; 63 const char kWindowTypeValuePopup[] = "popup";
63 const char kWindowTypeValuePanel[] = "panel"; 64 const char kWindowTypeValuePanel[] = "panel";
64 const char kWindowTypeValueApp[] = "app"; 65 const char kWindowTypeValueApp[] = "app";
65 66
(...skipping 26 matching lines...) Expand all
92 const char kInvalidWindowStateError[] = "Invalid value for state"; 93 const char kInvalidWindowStateError[] = "Invalid value for state";
93 94
94 const char kNoCodeOrFileToExecuteError[] = "No source code or file specified."; 95 const char kNoCodeOrFileToExecuteError[] = "No source code or file specified.";
95 const char kMoreThanOneValuesError[] = "Code and file should not be specified " 96 const char kMoreThanOneValuesError[] = "Code and file should not be specified "
96 "at the same time in the second argument."; 97 "at the same time in the second argument.";
97 const char kLoadFileError[] = "Failed to load file: \"*\". "; 98 const char kLoadFileError[] = "Failed to load file: \"*\". ";
98 const char kCannotDetermineLanguageOfUnloadedTab[] = 99 const char kCannotDetermineLanguageOfUnloadedTab[] =
99 "Cannot determine language: tab not loaded"; 100 "Cannot determine language: tab not loaded";
100 101
101 } // namespace extension_tabs_module_constants 102 } // namespace extension_tabs_module_constants
OLDNEW
« no previous file with comments | « chrome/browser/extensions/extension_tabs_module_constants.h ('k') | chrome/common/extensions/api/windows.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698