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

Side by Side Diff: chrome/browser/custom_handlers/protocol_handler_registry_unittest.cc

Issue 9114020: Remove task.h and finish base::Bind() migration. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix typo Created 8 years, 11 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/custom_handlers/protocol_handler_registry.h" 5 #include "chrome/browser/custom_handlers/protocol_handler_registry.h"
6 6
7 #include <set> 7 #include <set>
8 8
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "base/message_loop.h" 10 #include "base/message_loop.h"
11 #include "base/task.h"
12 #include "base/utf_string_conversions.h" 11 #include "base/utf_string_conversions.h"
13 #include "chrome/common/chrome_notification_types.h" 12 #include "chrome/common/chrome_notification_types.h"
14 #include "chrome/common/custom_handlers/protocol_handler.h" 13 #include "chrome/common/custom_handlers/protocol_handler.h"
15 #include "chrome/test/base/testing_browser_process.h" 14 #include "chrome/test/base/testing_browser_process.h"
16 #include "chrome/test/base/testing_pref_service.h" 15 #include "chrome/test/base/testing_pref_service.h"
17 #include "chrome/test/base/testing_profile.h" 16 #include "chrome/test/base/testing_profile.h"
18 #include "content/browser/renderer_host/test_render_view_host.h" 17 #include "content/browser/renderer_host/test_render_view_host.h"
19 #include "content/public/browser/notification_observer.h" 18 #include "content/public/browser/notification_observer.h"
20 #include "content/public/browser/notification_registrar.h" 19 #include "content/public/browser/notification_registrar.h"
21 #include "content/public/browser/notification_source.h" 20 #include "content/public/browser/notification_source.h"
(...skipping 766 matching lines...) Expand 10 before | Expand all | Expand 10 after
788 GURL("http://other.com/%s"), "test"); 787 GURL("http://other.com/%s"), "test");
789 ASSERT_EQ(ph1.url().GetOrigin() == ph2.url().GetOrigin(), 788 ASSERT_EQ(ph1.url().GetOrigin() == ph2.url().GetOrigin(),
790 ph1.IsSameOrigin(ph2)); 789 ph1.IsSameOrigin(ph2));
791 ASSERT_EQ(ph1.url().GetOrigin() == ph2.url().GetOrigin(), 790 ASSERT_EQ(ph1.url().GetOrigin() == ph2.url().GetOrigin(),
792 ph2.IsSameOrigin(ph1)); 791 ph2.IsSameOrigin(ph1));
793 ASSERT_EQ(ph2.url().GetOrigin() == ph3.url().GetOrigin(), 792 ASSERT_EQ(ph2.url().GetOrigin() == ph3.url().GetOrigin(),
794 ph2.IsSameOrigin(ph3)); 793 ph2.IsSameOrigin(ph3));
795 ASSERT_EQ(ph3.url().GetOrigin() == ph2.url().GetOrigin(), 794 ASSERT_EQ(ph3.url().GetOrigin() == ph2.url().GetOrigin(),
796 ph3.IsSameOrigin(ph2)); 795 ph3.IsSameOrigin(ph2));
797 } 796 }
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/system/statistics_provider.cc ('k') | chrome/browser/download/chrome_download_manager_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698