| Index: chrome/browser/intents/web_intent_service_data.cc
|
| diff --git a/chrome/browser/intents/web_intent_data.cc b/chrome/browser/intents/web_intent_service_data.cc
|
| similarity index 66%
|
| rename from chrome/browser/intents/web_intent_data.cc
|
| rename to chrome/browser/intents/web_intent_service_data.cc
|
| index 5f7b772a356b30a0062f9bfff140cf8eed70c349..d34173d72c26eb3f1cf84128d5f7db181e42a1f6 100644
|
| --- a/chrome/browser/intents/web_intent_data.cc
|
| +++ b/chrome/browser/intents/web_intent_service_data.cc
|
| @@ -3,16 +3,16 @@
|
| // found in the LICENSE file.
|
|
|
| #include "base/utf_string_conversions.h"
|
| -#include "chrome/browser/intents/web_intent_data.h"
|
| +#include "chrome/browser/intents/web_intent_service_data.h"
|
| #include <ostream>
|
|
|
| -WebIntentData::WebIntentData()
|
| - : disposition(WebIntentData::DISPOSITION_WINDOW) {
|
| +WebIntentServiceData::WebIntentServiceData()
|
| + : disposition(WebIntentServiceData::DISPOSITION_WINDOW) {
|
| }
|
|
|
| -WebIntentData::~WebIntentData() {}
|
| +WebIntentServiceData::~WebIntentServiceData() {}
|
|
|
| -bool WebIntentData::operator==(const WebIntentData& other) const {
|
| +bool WebIntentServiceData::operator==(const WebIntentServiceData& other) const {
|
| return (service_url == other.service_url &&
|
| action == other.action &&
|
| type == other.type &&
|
| @@ -21,7 +21,7 @@ bool WebIntentData::operator==(const WebIntentData& other) const {
|
| }
|
|
|
| std::ostream& operator<<(::std::ostream& os,
|
| - const WebIntentData& intent) {
|
| + const WebIntentServiceData& intent) {
|
| return os <<
|
| "{" << intent.service_url <<
|
| ", " << UTF16ToUTF8(intent.action) <<
|
|
|