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

Unified Diff: chrome/browser/plugins/plugin_metadata.h

Issue 1281313003: base: Remove using:: declaration from version.h header. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more fixes Created 5 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/plugins/plugin_finder.cc ('k') | chrome/browser/plugins/plugin_metadata.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/plugins/plugin_metadata.h
diff --git a/chrome/browser/plugins/plugin_metadata.h b/chrome/browser/plugins/plugin_metadata.h
index 99ed7d3202150e26a1c167c6b4f23467760180eb..1080bec905ec1f3704dfcd4a0aca2a896a79926c 100644
--- a/chrome/browser/plugins/plugin_metadata.h
+++ b/chrome/browser/plugins/plugin_metadata.h
@@ -69,7 +69,7 @@ class PluginMetadata {
void AddMatchingMimeType(const std::string& mime_type);
// Adds information about a plugin version.
- void AddVersion(const Version& version, SecurityStatus status);
+ void AddVersion(const base::Version& version, SecurityStatus status);
// Checks if |plugin| mime types match all |matching_mime_types_|.
// If there is no |matching_mime_types_|, |group_name_matcher_| is used
@@ -89,7 +89,7 @@ class PluginMetadata {
private:
struct VersionComparator {
- bool operator() (const Version& lhs, const Version& rhs) const;
+ bool operator() (const base::Version& lhs, const base::Version& rhs) const;
};
std::string identifier_;
@@ -99,7 +99,7 @@ class PluginMetadata {
GURL plugin_url_;
GURL help_url_;
std::string language_;
- std::map<Version, SecurityStatus, VersionComparator> versions_;
+ std::map<base::Version, SecurityStatus, VersionComparator> versions_;
std::vector<std::string> all_mime_types_;
std::vector<std::string> matching_mime_types_;
« no previous file with comments | « chrome/browser/plugins/plugin_finder.cc ('k') | chrome/browser/plugins/plugin_metadata.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698