431dc5a0d1
TBR=evmar Review URL: http://codereview.chromium.org/149471 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@20406 0039d316-1c4b-4281-b951-d872f2087c98
28 linhas
900 B
C++
28 linhas
900 B
C++
// Copyright (c) 2009 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
// Constants for the event names sent to extensions.
|
|
|
|
#ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_EVENT_NAMES_H_
|
|
#define CHROME_BROWSER_EXTENSIONS_EXTENSION_EVENT_NAMES_H_
|
|
|
|
namespace extension_event_names {
|
|
|
|
extern const char kOnPageActionExecuted[];
|
|
extern const char kOnTabAttached[];
|
|
extern const char kOnTabCreated[];
|
|
extern const char kOnTabDetached[];
|
|
extern const char kOnTabMoved[];
|
|
extern const char kOnTabRemoved[];
|
|
extern const char kOnTabSelectionChanged[];
|
|
extern const char kOnTabUpdated[];
|
|
extern const char kOnWindowCreated[];
|
|
extern const char kOnWindowFocusedChanged[];
|
|
extern const char kOnWindowRemoved[];
|
|
|
|
}; // namespace extension_event_names
|
|
|
|
#endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_EVENT_NAMES_H_
|
|
|