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

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

Issue 150062: [chromium-reviews] Add getLanguage function to tabs extension (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 5 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
Property Changes:
Added: svn:eol-style
+ LF
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 kDataKey[] = L"data"; 9 const wchar_t kDataKey[] = L"data";
10 const wchar_t kFavIconUrlKey[] = L"favIconUrl"; 10 const wchar_t kFavIconUrlKey[] = L"favIconUrl";
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 const char kUpdateWindowFunction[] = "UpdateWindow"; 49 const char kUpdateWindowFunction[] = "UpdateWindow";
50 const char kRemoveWindowFunction[] = "RemoveWindow"; 50 const char kRemoveWindowFunction[] = "RemoveWindow";
51 51
52 const char kGetTabFunction[] = "GetTab"; 52 const char kGetTabFunction[] = "GetTab";
53 const char kGetSelectedTabFunction[] = "GetSelectedTab"; 53 const char kGetSelectedTabFunction[] = "GetSelectedTab";
54 const char kGetAllTabsInWindowFunction[] = "GetAllTabsInWindow"; 54 const char kGetAllTabsInWindowFunction[] = "GetAllTabsInWindow";
55 const char kCreateTabFunction[] = "CreateTab"; 55 const char kCreateTabFunction[] = "CreateTab";
56 const char kUpdateTabFunction[] = "UpdateTab"; 56 const char kUpdateTabFunction[] = "UpdateTab";
57 const char kMoveTabFunction[] = "MoveTab"; 57 const char kMoveTabFunction[] = "MoveTab";
58 const char kRemoveTabFunction[] = "RemoveTab"; 58 const char kRemoveTabFunction[] = "RemoveTab";
59 59 const char kGetTabLanguageFunction[] = "GetTabLanguage";
60 60
61 } // namespace extension_tabs_module_constants 61 } // namespace extension_tabs_module_constants
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698