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

Unified Diff: chrome/browser/ui/webui/chromeos/login/login_ui_helpers.h

Issue 7980012: [ChromeOS] Reland - Make WebUI login use only needed resources. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 3 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/webui/chromeos/login/login_ui_helpers.h
diff --git a/chrome/browser/ui/webui/chromeos/login/login_ui_helpers.h b/chrome/browser/ui/webui/chromeos/login/login_ui_helpers.h
deleted file mode 100644
index 88173488ee606481d9dad015ab2fba6dce5e6a43..0000000000000000000000000000000000000000
--- a/chrome/browser/ui/webui/chromeos/login/login_ui_helpers.h
+++ /dev/null
@@ -1,42 +0,0 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_LOGIN_UI_HELPERS_H_
-#define CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_LOGIN_UI_HELPERS_H_
-#pragma once
-
-#include <string>
-
-#include "base/string_piece.h"
-
-class FilePath;
-class RefCountedMemory;
-
-namespace base {
-class DictionaryValue;
-}
-
-namespace chromeos {
-
-// This class is used for encapsulating the statics and other other messy
-// external calls that are required for creating and getting the needed HTML
-// objects. This allows for easier mocking of this code and allows for
-// modularity. Since we don't currently unit the class that this code is related
-// to, there is a case for refactoring it back into LoginUIHTMLSource.
-class HTMLOperationsInterface {
- public:
- HTMLOperationsInterface() {}
- virtual ~HTMLOperationsInterface() {}
-
- virtual base::StringPiece GetLoginHTML();
- virtual std::string GetFullHTML(base::StringPiece login_html,
- base::DictionaryValue* localized_strings);
-
- private:
- DISALLOW_COPY_AND_ASSIGN(HTMLOperationsInterface);
-};
-
-} // namespace chromeos
-
-#endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_LOGIN_UI_HELPERS_H_
« no previous file with comments | « chrome/browser/ui/webui/chromeos/login/login_ui.cc ('k') | chrome/browser/ui/webui/chromeos/login/login_ui_helpers.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698