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 |
deleted file mode 100644 |
index 5f7b772a356b30a0062f9bfff140cf8eed70c349..0000000000000000000000000000000000000000 |
--- a/chrome/browser/intents/web_intent_data.cc |
+++ /dev/null |
@@ -1,32 +0,0 @@ |
-// 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 "base/utf_string_conversions.h" |
-#include "chrome/browser/intents/web_intent_data.h" |
-#include <ostream> |
- |
-WebIntentData::WebIntentData() |
- : disposition(WebIntentData::DISPOSITION_WINDOW) { |
-} |
- |
-WebIntentData::~WebIntentData() {} |
- |
-bool WebIntentData::operator==(const WebIntentData& other) const { |
- return (service_url == other.service_url && |
- action == other.action && |
- type == other.type && |
- title == other.title && |
- disposition == other.disposition); |
-} |
- |
-std::ostream& operator<<(::std::ostream& os, |
- const WebIntentData& intent) { |
- return os << |
- "{" << intent.service_url << |
- ", " << UTF16ToUTF8(intent.action) << |
- ", " << UTF16ToUTF8(intent.type) << |
- ", " << UTF16ToUTF8(intent.title) << |
- ", " << intent.disposition << |
- "}"; |
-} |