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

Unified Diff: chrome/browser/chromeos/webui/login/mock_login_ui_helpers.h

Issue 6579003: Add in chrome://login-container (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: changes made in response to Oshima's and Nikita's comments Created 9 years, 10 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/chromeos/webui/login/mock_login_ui_helpers.h
diff --git a/chrome/browser/chromeos/webui/login/mock_login_ui_helpers.h b/chrome/browser/chromeos/webui/login/mock_login_ui_helpers.h
index 2bdc53b56453d226d4203beab462e9de95658fd2..fdaba44160d249dea52e0ee5cde0e36aa614fb79 100644
--- a/chrome/browser/chromeos/webui/login/mock_login_ui_helpers.h
+++ b/chrome/browser/chromeos/webui/login/mock_login_ui_helpers.h
@@ -18,10 +18,8 @@ class MockProfileOperationsInterface
public:
MockProfileOperationsInterface() {}
- MOCK_METHOD0(GetDefaultProfile,
- Profile*());
- MOCK_METHOD0(GetDefaultProfileByPath,
- Profile*());
+ MOCK_METHOD0(GetDefaultProfile, Profile*());
+ MOCK_METHOD0(GetDefaultProfileByPath, Profile*());
private:
DISALLOW_COPY_AND_ASSIGN(MockProfileOperationsInterface);
@@ -32,10 +30,8 @@ class MockBrowserOperationsInterface
public:
MockBrowserOperationsInterface() {}
- MOCK_METHOD1(CreateBrowser,
- Browser*(Profile* profile));
- MOCK_METHOD1(GetLoginBrowser,
- Browser*(Profile* profile));
+ MOCK_METHOD1(CreateBrowser, Browser*(Profile* profile));
+ MOCK_METHOD1(GetLoginBrowser, Browser*(Profile* profile));
private:
DISALLOW_COPY_AND_ASSIGN(MockBrowserOperationsInterface);
@@ -46,8 +42,8 @@ class MockHTMLOperationsInterface
public:
MockHTMLOperationsInterface() {}
- MOCK_METHOD0(GetLoginHTML,
- base::StringPiece());
+ MOCK_METHOD0(GetLoginHTML, base::StringPiece());
+ MOCK_METHOD0(GetLoginContainerHTML, base::StringPiece());
MOCK_METHOD2(GetFullHTML,
std::string(base::StringPiece login_html,
DictionaryValue* localized_strings));

Powered by Google App Engine
This is Rietveld 408576698