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

Unified Diff: chrome/browser/ui/intents/web_intent_picker_controller_browsertest.cc

Issue 10834078: Cleanup: Constify more ExtensionService methods, and IWYU. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: rebase Created 8 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/intents/web_intent_picker_controller_browsertest.cc
===================================================================
--- chrome/browser/ui/intents/web_intent_picker_controller_browsertest.cc (revision 152036)
+++ chrome/browser/ui/intents/web_intent_picker_controller_browsertest.cc (working copy)
@@ -7,6 +7,7 @@
#include "base/bind.h"
#include "base/callback.h"
+#include "base/command_line.h"
#include "base/memory/scoped_ptr.h"
#include "base/string_util.h"
#include "base/stringprintf.h"
@@ -79,16 +80,16 @@
class DummyURLFetcherFactory : public net::URLFetcherFactory {
public:
- DummyURLFetcherFactory() {}
- virtual ~DummyURLFetcherFactory() {}
+ DummyURLFetcherFactory() {}
+ virtual ~DummyURLFetcherFactory() {}
- virtual net::URLFetcher* CreateURLFetcher(
- int id,
- const GURL& url,
- net::URLFetcher::RequestType request_type,
- net::URLFetcherDelegate* d) OVERRIDE {
- return new net::TestURLFetcher(id, url, d);
- }
+ virtual net::URLFetcher* CreateURLFetcher(
+ int id,
+ const GURL& url,
+ net::URLFetcher::RequestType request_type,
+ net::URLFetcherDelegate* d) OVERRIDE {
+ return new net::TestURLFetcher(id, url, d);
+ }
};
} // namespace
@@ -431,8 +432,8 @@
EXPECT_EQ(original, chrome::GetActiveWebContents(browser())->GetURL());
}
-class WebIntentPickerControllerIncognitoBrowserTest :
- public WebIntentPickerControllerBrowserTest {
+class WebIntentPickerControllerIncognitoBrowserTest
+ : public WebIntentPickerControllerBrowserTest {
public:
WebIntentPickerControllerIncognitoBrowserTest() {}
« no previous file with comments | « chrome/browser/ui/gtk/location_bar_view_gtk.cc ('k') | chrome/browser/ui/startup/startup_browser_creator_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698