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

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

Issue 2821011: Removes phantom tabs. (Closed)
Patch Set: Created 10 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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 wchar_t kAllFramesKey[] = L"allFrames"; 9 const wchar_t kAllFramesKey[] = L"allFrames";
10 const wchar_t kCodeKey[] = L"code"; 10 const wchar_t kCodeKey[] = L"code";
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 const char kInternalVisibleTabCaptureError[] = 61 const char kInternalVisibleTabCaptureError[] =
62 "Internal error while trying to capture visible region of the current tab"; 62 "Internal error while trying to capture visible region of the current tab";
63 const char kNotImplementedError[] = "This call is not yet implemented"; 63 const char kNotImplementedError[] = "This call is not yet implemented";
64 const char kSupportedInWindowsOnlyError[] = "Supported in Windows only"; 64 const char kSupportedInWindowsOnlyError[] = "Supported in Windows only";
65 65
66 const char kNoCodeOrFileToExecuteError[] = "No source code or file specified."; 66 const char kNoCodeOrFileToExecuteError[] = "No source code or file specified.";
67 const char kMoreThanOneValuesError[] = "Code and file should not be specified " 67 const char kMoreThanOneValuesError[] = "Code and file should not be specified "
68 "at the same time in the second argument."; 68 "at the same time in the second argument.";
69 const char kLoadFileError[] = "Failed to load file: \"*\". "; 69 const char kLoadFileError[] = "Failed to load file: \"*\". ";
70 const char kCannotUpdatePinnedTab[] = "Cannot update pinned tabs"; 70 const char kCannotUpdatePinnedTab[] = "Cannot update pinned tabs";
71 const char kCannotRemovePhantomTab[] = "Cannot remove phantom tabs";
72 const char kCannotDetermineLanguageOfUnloadedTab[] = 71 const char kCannotDetermineLanguageOfUnloadedTab[] =
73 "Cannot determine language: tab not loaded"; 72 "Cannot determine language: tab not loaded";
74 73
75 } // namespace extension_tabs_module_constants 74 } // namespace extension_tabs_module_constants
OLDNEW
« no previous file with comments | « chrome/browser/extensions/extension_tabs_module_constants.h ('k') | chrome/browser/gtk/browser_window_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698