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

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

Issue 2142413003: Adding Discarded property support for onUpdate function. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@API_Discarded
Patch Set: nit fixed Created 4 years, 4 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 13 matching lines...) Expand all
24 const char kIndexKey[] = "index"; 24 const char kIndexKey[] = "index";
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 kAudibleKey[] = "audible"; 33 const char kAudibleKey[] = "audible";
34 const char kDiscardedKey[] = "discarded";
34 const char kMutedKey[] = "muted"; 35 const char kMutedKey[] = "muted";
35 const char kMutedInfoKey[] = "mutedInfo"; 36 const char kMutedInfoKey[] = "mutedInfo";
36 const char kQualityKey[] = "quality"; 37 const char kQualityKey[] = "quality";
37 const char kHighlightedKey[] = "highlighted"; 38 const char kHighlightedKey[] = "highlighted";
38 const char kRunAtKey[] = "runAt"; 39 const char kRunAtKey[] = "runAt";
39 const char kSelectedKey[] = "selected"; 40 const char kSelectedKey[] = "selected";
40 const char kShowStateKey[] = "state"; 41 const char kShowStateKey[] = "state";
41 const char kStatusKey[] = "status"; 42 const char kStatusKey[] = "status";
42 const char kTabIdKey[] = "tabId"; 43 const char kTabIdKey[] = "tabId";
43 const char kTabIdsKey[] = "tabIds"; 44 const char kTabIdsKey[] = "tabIds";
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 const char kCannotUpdateMuteDisabled[] = 106 const char kCannotUpdateMuteDisabled[] =
106 "Failed to update mute state for tab *, --* must be enabled"; 107 "Failed to update mute state for tab *, --* must be enabled";
107 const char kCannotUpdateMuteCaptured[] = 108 const char kCannotUpdateMuteCaptured[] =
108 "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 "
109 "being captured"; 110 "being captured";
110 const char kCannotDetermineLanguageOfUnloadedTab[] = 111 const char kCannotDetermineLanguageOfUnloadedTab[] =
111 "Cannot determine language: tab not loaded"; 112 "Cannot determine language: tab not loaded";
112 113
113 } // namespace tabs_constants 114 } // namespace tabs_constants
114 } // namespace extensions 115 } // namespace extensions
OLDNEW
« no previous file with comments | « chrome/browser/extensions/api/tabs/tabs_constants.h ('k') | chrome/browser/extensions/api/tabs/tabs_event_router.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698