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

Side by Side Diff: chrome/browser/intents/web_intent_data.cc

Issue 7624012: First pass on intents options UI. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/intents/web_intent_data.h" 5 #include "chrome/browser/intents/web_intent_data.h"
6 6
7 WebIntentData::WebIntentData() {} 7 WebIntentData::WebIntentData() {}
8 8
9 WebIntentData::~WebIntentData() {} 9 WebIntentData::~WebIntentData() {}
10 10
11 bool WebIntentData::operator==(const WebIntentData& other) const { 11 bool WebIntentData::operator==(const WebIntentData& other) const {
12 return (service_url == other.service_url && 12 return (service_url == other.service_url &&
13 action == other.action && 13 action == other.action &&
14 type == other.type); 14 type == other.type &&
15 title == other.title);
James Hawkins 2011/08/17 03:18:39 There will be a merge conflict with groby's CL.
Greg Billock 2011/08/17 18:49:50 If she already fixed the title bug, I'll merge it.
15 } 16 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698