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

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

Issue 518013: Merge 32634 - Make executeScript and insertCSS inject code into all frames.... (Closed) Base URL: svn://svn.chromium.org/chrome/branches/249/src/
Patch Set: Created 10 years, 12 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) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 kFavIconUrlKey[] = L"favIconUrl"; 9 const wchar_t kFavIconUrlKey[] = L"favIconUrl";
10 const wchar_t kFocusedKey[] = L"focused"; 10 const wchar_t kFocusedKey[] = L"focused";
(...skipping 29 matching lines...) Expand all
40 const char kNoSelectedTabError[] = "No selected tab"; 40 const char kNoSelectedTabError[] = "No selected tab";
41 const char kInvalidUrlError[] = "Invalid url: \"*\"."; 41 const char kInvalidUrlError[] = "Invalid url: \"*\".";
42 const char kInternalVisibleTabCaptureError[] = 42 const char kInternalVisibleTabCaptureError[] =
43 "Internal error while trying to capture visible region of the current tab"; 43 "Internal error while trying to capture visible region of the current tab";
44 const char kNotImplementedError[] = "This call is not yet implemented"; 44 const char kNotImplementedError[] = "This call is not yet implemented";
45 const char kCannotAccessPageError[] = "Cannot access contents of url \"*\". " 45 const char kCannotAccessPageError[] = "Cannot access contents of url \"*\". "
46 "Extension manifest must request permission to access this host."; 46 "Extension manifest must request permission to access this host.";
47 const char kSupportedInWindowsOnlyError[] = "Supported in Windows only"; 47 const char kSupportedInWindowsOnlyError[] = "Supported in Windows only";
48 48
49 const char kNoCodeOrFileToExecuteError[] = "No source code or file specified."; 49 const char kNoCodeOrFileToExecuteError[] = "No source code or file specified.";
50 const char kMoreThanOneValuesError[] = "There should be only one value (either" 50 const char kMoreThanOneValuesError[] = "Code and file should not be specified "
51 "code or file) in the second argument."; 51 "at the same time in the second argument.";
52 const char kLoadFileError[] = "Failed to load file: \"*\". "; 52 const char kLoadFileError[] = "Failed to load file: \"*\". ";
53 53
54 } // namespace extension_tabs_module_constants 54 } // namespace extension_tabs_module_constants
OLDNEW
« no previous file with comments | « chrome/browser/extensions/execute_script_apitest.cc ('k') | chrome/browser/tab_contents/tab_contents.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698