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

Unified Diff: webkit/glue/web_intent_service_data.h

Issue 8417043: Add webkit_glue namespace. Improve some variable and test names. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 2 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: webkit/glue/web_intent_service_data.h
diff --git a/webkit/glue/web_intent_service_data.h b/webkit/glue/web_intent_service_data.h
index aa4225682ce8177fcc408ca0d592fb20ffe17860..54afd3ed7f9c66c2790e04299aaf5cce903acf6a 100644
--- a/webkit/glue/web_intent_service_data.h
+++ b/webkit/glue/web_intent_service_data.h
@@ -10,6 +10,8 @@
#include "googleurl/src/gurl.h"
#include <iosfwd>
+namespace webkit_glue {
+
// Describes the relevant elements of a WebIntent service.
struct WebIntentServiceData {
// An intents disposition determines which context the service is opened in.
@@ -31,6 +33,9 @@ struct WebIntentServiceData {
};
// Printing operator - helps gtest produce readable error messages.
-std::ostream& operator<<(std::ostream& os, const WebIntentServiceData& intent);
+std::ostream& operator<<(std::ostream& os,
+ const webkit_glue::WebIntentServiceData& intent);
+
+} // namespace webkit_glue
#endif // CHROME_BROWSER_INTENTS_WEB_INTENT_SERVICE_DATA_H_

Powered by Google App Engine
This is Rietveld 408576698