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

Side by Side Diff: chrome/common/extensions/extension.h

Issue 7187023: Adding an experimental app notification API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #ifndef CHROME_COMMON_EXTENSIONS_EXTENSION_H_ 5 #ifndef CHROME_COMMON_EXTENSIONS_EXTENSION_H_
6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_H_ 6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_H_
7 #pragma once 7 #pragma once
8 8
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 1010 matching lines...) Expand 10 before | Expand all | Expand 10 after
1021 1021
1022 // Was the extension already disabled? 1022 // Was the extension already disabled?
1023 bool already_disabled; 1023 bool already_disabled;
1024 1024
1025 // The extension being unloaded - this should always be non-NULL. 1025 // The extension being unloaded - this should always be non-NULL.
1026 const Extension* extension; 1026 const Extension* extension;
1027 1027
1028 UnloadedExtensionInfo(const Extension* extension, Reason reason); 1028 UnloadedExtensionInfo(const Extension* extension, Reason reason);
1029 }; 1029 };
1030 1030
1031 struct AppNotificationInfo {
1032 std::string extension_id;
1033 };
Finnur 2011/06/20 12:21:46 This struct doesn't seem to be used anywhere and t
asargent_no_longer_on_chrome 2011/06/21 18:10:11 Good catch, I forgot to remove this from the CL.
1034
1031 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_H_ 1035 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698