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

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

Issue 7980063: Moved web_intent_service_data into webkit/glue (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 3 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_service_data.cc
diff --git a/chrome/browser/intents/web_intent_service_data.cc b/chrome/browser/intents/web_intent_service_data.cc
deleted file mode 100644
index d34173d72c26eb3f1cf84128d5f7db181e42a1f6..0000000000000000000000000000000000000000
--- a/chrome/browser/intents/web_intent_service_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_service_data.h"
-#include <ostream>
-
-WebIntentServiceData::WebIntentServiceData()
- : disposition(WebIntentServiceData::DISPOSITION_WINDOW) {
-}
-
-WebIntentServiceData::~WebIntentServiceData() {}
-
-bool WebIntentServiceData::operator==(const WebIntentServiceData& 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 WebIntentServiceData& intent) {
- return os <<
- "{" << intent.service_url <<
- ", " << UTF16ToUTF8(intent.action) <<
- ", " << UTF16ToUTF8(intent.type) <<
- ", " << UTF16ToUTF8(intent.title) <<
- ", " << intent.disposition <<
- "}";
-}

Powered by Google App Engine
This is Rietveld 408576698