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

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

Issue 10696208: Move ExtensionEventRouter and related into extensions namespace (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fixed bug + latest master Created 8 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
« no previous file with comments | « chrome/browser/extensions/event_names.h ('k') | chrome/browser/extensions/event_router.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/extension_event_names.h" 5 #include "chrome/browser/extensions/event_names.h"
6 6
7 namespace extension_event_names { 7 namespace extensions {
8
9 namespace event_names {
8 10
9 const char kOnTabActivated[] = "tabs.onActivated"; 11 const char kOnTabActivated[] = "tabs.onActivated";
10 const char kOnTabActiveChanged[] = "tabs.onActiveChanged"; 12 const char kOnTabActiveChanged[] = "tabs.onActiveChanged";
11 const char kOnTabAttached[] = "tabs.onAttached"; 13 const char kOnTabAttached[] = "tabs.onAttached";
12 const char kOnTabCreated[] = "tabs.onCreated"; 14 const char kOnTabCreated[] = "tabs.onCreated";
13 const char kOnTabDetached[] = "tabs.onDetached"; 15 const char kOnTabDetached[] = "tabs.onDetached";
14 const char kOnTabHighlightChanged[] = "tabs.onHighlightChanged"; 16 const char kOnTabHighlightChanged[] = "tabs.onHighlightChanged";
15 const char kOnTabHighlighted[] = "tabs.onHighlighted"; 17 const char kOnTabHighlighted[] = "tabs.onHighlighted";
16 const char kOnTabMoved[] = "tabs.onMoved"; 18 const char kOnTabMoved[] = "tabs.onMoved";
17 const char kOnTabRemoved[] = "tabs.onRemoved"; 19 const char kOnTabRemoved[] = "tabs.onRemoved";
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 59
58 #if defined(OS_CHROMEOS) 60 #if defined(OS_CHROMEOS)
59 const char kBluetoothOnAvailabilityChanged[] = 61 const char kBluetoothOnAvailabilityChanged[] =
60 "experimental.bluetooth.onAvailabilityChanged"; 62 "experimental.bluetooth.onAvailabilityChanged";
61 const char kBluetoothOnDeviceDiscovered[] = 63 const char kBluetoothOnDeviceDiscovered[] =
62 "experimental.bluetooth.onDeviceDiscovered"; 64 "experimental.bluetooth.onDeviceDiscovered";
63 const char kBluetoothOnPowerChanged[] = 65 const char kBluetoothOnPowerChanged[] =
64 "experimental.bluetooth.onPowerChanged"; 66 "experimental.bluetooth.onPowerChanged";
65 #endif 67 #endif
66 68
67 } // namespace extension_event_names 69 } // namespace event_names
70
71 } // namespace extensions
OLDNEW
« no previous file with comments | « chrome/browser/extensions/event_names.h ('k') | chrome/browser/extensions/event_router.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698