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

Unified Diff: chrome/browser/intents/web_intent_data.cc

Issue 7601013: Web Intents: Hook up the register intent InfoBar with the WebIntentsRegistry. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Test fix. Created 9 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
Index: chrome/browser/intents/web_intent_data.cc
diff --git a/chrome/browser/intents/web_intent_data.cc b/chrome/browser/intents/web_intent_data.cc
new file mode 100644
index 0000000000000000000000000000000000000000..c2f9fbf74ce06f0c668fbd4dbf01091a4dd3ea98
--- /dev/null
+++ b/chrome/browser/intents/web_intent_data.cc
@@ -0,0 +1,13 @@
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "chrome/browser/intents/web_intent_data.h"
+
+WebIntentData::WebIntentData() {}
+
+bool WebIntentData::operator==(const WebIntentData& other) const {
+ return (service_url == other.service_url &&
+ action == other.action &&
+ type == other.type);
+}

Powered by Google App Engine
This is Rietveld 408576698