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

Unified Diff: chrome/browser/extensions/api/dial/dial_device_data.h

Issue 2583853004: [chrome.dial] Adds chrome.dial.fetchDeviceDecription API. (Closed)
Patch Set: Rebase and fix typo. Created 3 years, 11 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
Index: chrome/browser/extensions/api/dial/dial_device_data.h
diff --git a/chrome/browser/extensions/api/dial/dial_device_data.h b/chrome/browser/extensions/api/dial/dial_device_data.h
index 87eacffc036efc893cf8210bbf3f0a6946f7de9d..4706885a465399094231af55d21504714f6dec06 100644
--- a/chrome/browser/extensions/api/dial/dial_device_data.h
+++ b/chrome/browser/extensions/api/dial/dial_device_data.h
@@ -92,6 +92,16 @@ class DialDeviceData {
int config_id_;
};
+struct DialDeviceDescriptionData {
+ public:
+ DialDeviceDescriptionData() = default;
+ DialDeviceDescriptionData(const std::string& device_description,
+ const GURL& app_url);
+
+ std::string device_description;
+ GURL app_url;
+};
+
} // namespace dial
} // namespace api
} // namespace extensions
« no previous file with comments | « chrome/browser/extensions/api/dial/dial_apitest.cc ('k') | chrome/browser/extensions/api/dial/dial_device_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698