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

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

Issue 11428116: First few API implementation of AppsDebuggerPrivate. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: fixing build on windows Created 8 years 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
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 #ifndef CHROME_COMMON_EXTENSIONS_MANIFEST_H_ 5 #ifndef CHROME_COMMON_EXTENSIONS_MANIFEST_H_
6 #define CHROME_COMMON_EXTENSIONS_MANIFEST_H_ 6 #define CHROME_COMMON_EXTENSIONS_MANIFEST_H_
7 7
8 #include <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 #include <set> 10 #include <set>
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 42
43 // Returns the manifest type. 43 // Returns the manifest type.
44 Extension::Type type() const { return type_; } 44 Extension::Type type() const { return type_; }
45 45
46 bool is_theme() const { return type_ == Extension::TYPE_THEME; } 46 bool is_theme() const { return type_ == Extension::TYPE_THEME; }
47 bool is_platform_app() const { return type_ == Extension::TYPE_PLATFORM_APP; } 47 bool is_platform_app() const { return type_ == Extension::TYPE_PLATFORM_APP; }
48 bool is_hosted_app() const { return type_ == Extension::TYPE_HOSTED_APP; } 48 bool is_hosted_app() const { return type_ == Extension::TYPE_HOSTED_APP; }
49 bool is_legacy_packaged_app() const { 49 bool is_legacy_packaged_app() const {
50 return type_ == Extension::TYPE_LEGACY_PACKAGED_APP; 50 return type_ == Extension::TYPE_LEGACY_PACKAGED_APP;
51 } 51 }
52 bool is_extension() const { return type_ == Extension::TYPE_EXTENSION; }
52 53
53 // These access the wrapped manifest value, returning false when the property 54 // These access the wrapped manifest value, returning false when the property
54 // does not exist or if the manifest type can't access it. 55 // does not exist or if the manifest type can't access it.
55 bool HasKey(const std::string& key) const; 56 bool HasKey(const std::string& key) const;
56 bool HasPath(const std::string& path) const; 57 bool HasPath(const std::string& path) const;
57 bool Get(const std::string& path, base::Value** out_value) const; 58 bool Get(const std::string& path, base::Value** out_value) const;
58 bool GetBoolean(const std::string& path, bool* out_value) const; 59 bool GetBoolean(const std::string& path, bool* out_value) const;
59 bool GetInteger(const std::string& path, int* out_value) const; 60 bool GetInteger(const std::string& path, int* out_value) const;
60 bool GetString(const std::string& path, std::string* out_value) const; 61 bool GetString(const std::string& path, std::string* out_value) const;
61 bool GetString(const std::string& path, string16* out_value) const; 62 bool GetString(const std::string& path, string16* out_value) const;
(...skipping 30 matching lines...) Expand all
92 scoped_ptr<base::DictionaryValue> value_; 93 scoped_ptr<base::DictionaryValue> value_;
93 94
94 Extension::Type type_; 95 Extension::Type type_;
95 96
96 DISALLOW_COPY_AND_ASSIGN(Manifest); 97 DISALLOW_COPY_AND_ASSIGN(Manifest);
97 }; 98 };
98 99
99 } // namespace extensions 100 } // namespace extensions
100 101
101 #endif // CHROME_COMMON_EXTENSIONS_MANIFEST_H_ 102 #endif // CHROME_COMMON_EXTENSIONS_MANIFEST_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698