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

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

Issue 2424143002: Elim detached_panel type and update chrome.windows documentation (Closed)
Patch Set: . Created 4 years, 2 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/api/tabs/tabs_constants.h" 5 #include "chrome/browser/extensions/api/tabs/tabs_constants.h"
6 6
7 namespace extensions { 7 namespace extensions {
8 namespace tabs_constants { 8 namespace tabs_constants {
9 9
10 const char kActiveKey[] = "active"; 10 const char kActiveKey[] = "active";
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 const char kShowStateValueNormal[] = "normal"; 60 const char kShowStateValueNormal[] = "normal";
61 const char kShowStateValueMinimized[] = "minimized"; 61 const char kShowStateValueMinimized[] = "minimized";
62 const char kShowStateValueMaximized[] = "maximized"; 62 const char kShowStateValueMaximized[] = "maximized";
63 const char kShowStateValueFullscreen[] = "fullscreen"; 63 const char kShowStateValueFullscreen[] = "fullscreen";
64 const char kStatusValueComplete[] = "complete"; 64 const char kStatusValueComplete[] = "complete";
65 const char kStatusValueLoading[] = "loading"; 65 const char kStatusValueLoading[] = "loading";
66 66
67 const char kWindowTypeValueNormal[] = "normal"; 67 const char kWindowTypeValueNormal[] = "normal";
68 const char kWindowTypeValuePopup[] = "popup"; 68 const char kWindowTypeValuePopup[] = "popup";
69 const char kWindowTypeValuePanel[] = "panel"; 69 const char kWindowTypeValuePanel[] = "panel";
70 const char kWindowTypeValueDetachedPanel[] = "detached_panel";
71 const char kWindowTypeValueApp[] = "app"; 70 const char kWindowTypeValueApp[] = "app";
72 const char kWindowTypeValueDevTools[] = "devtools"; 71 const char kWindowTypeValueDevTools[] = "devtools";
73 72
74 const char kCannotZoomDisabledTabError[] = "Cannot zoom a tab in disabled " 73 const char kCannotZoomDisabledTabError[] = "Cannot zoom a tab in disabled "
75 "mode."; 74 "mode.";
76 const char kCanOnlyMoveTabsWithinNormalWindowsError[] = "Tabs can only be " 75 const char kCanOnlyMoveTabsWithinNormalWindowsError[] = "Tabs can only be "
77 "moved to and from normal windows."; 76 "moved to and from normal windows.";
78 const char kCanOnlyMoveTabsWithinSameProfileError[] = "Tabs can only be moved " 77 const char kCanOnlyMoveTabsWithinSameProfileError[] = "Tabs can only be moved "
79 "between windows in the same profile."; 78 "between windows in the same profile.";
80 const char kFrameNotFoundError[] = "No frame with id * in tab *."; 79 const char kFrameNotFoundError[] = "No frame with id * in tab *.";
(...skipping 26 matching lines...) Expand all
107 const char kCannotUpdateMuteDisabled[] = 106 const char kCannotUpdateMuteDisabled[] =
108 "Failed to update mute state for tab *, --* must be enabled"; 107 "Failed to update mute state for tab *, --* must be enabled";
109 const char kCannotUpdateMuteCaptured[] = 108 const char kCannotUpdateMuteCaptured[] =
110 "Cannot update mute state for tab *, tab has audio or video currently " 109 "Cannot update mute state for tab *, tab has audio or video currently "
111 "being captured"; 110 "being captured";
112 const char kCannotDetermineLanguageOfUnloadedTab[] = 111 const char kCannotDetermineLanguageOfUnloadedTab[] =
113 "Cannot determine language: tab not loaded"; 112 "Cannot determine language: tab not loaded";
114 113
115 } // namespace tabs_constants 114 } // namespace tabs_constants
116 } // namespace extensions 115 } // namespace extensions
OLDNEW
« no previous file with comments | « chrome/browser/extensions/api/tabs/tabs_constants.h ('k') | chrome/common/extensions/api/windows.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698