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

Unified Diff: components/webui_generator/web_ui_view.h

Issue 1181703008: Removed webui_generator and new OOBE UI placeholder. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed empty line. Created 5 years, 6 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
« no previous file with comments | « components/webui_generator/view_model.cc ('k') | components/webui_generator/web_ui_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/webui_generator/web_ui_view.h
diff --git a/components/webui_generator/web_ui_view.h b/components/webui_generator/web_ui_view.h
deleted file mode 100644
index bfb8c9fafb60db0d8849cffb9eafda994b58a5ab..0000000000000000000000000000000000000000
--- a/components/webui_generator/web_ui_view.h
+++ /dev/null
@@ -1,108 +0,0 @@
-// Copyright 2015 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_WUG_WEB_UI_VIEW_H_
-#define CHROME_BROWSER_UI_WEBUI_WUG_WEB_UI_VIEW_H_
-
-#include <string>
-
-#include "base/bind.h"
-#include "base/containers/hash_tables.h"
-#include "base/macros.h"
-#include "base/memory/ref_counted_memory.h"
-#include "base/memory/scoped_ptr.h"
-#include "components/login/base_screen_handler_utils.h"
-#include "components/login/screens/screen_context.h"
-#include "components/webui_generator/export.h"
-#include "components/webui_generator/view.h"
-#include "content/public/browser/web_ui.h"
-#include "content/public/browser/web_ui_data_source.h"
-
-namespace base {
-class DictionaryValue;
-}
-
-namespace content {
-class WebUI;
-}
-
-namespace login {
-class LocalizedValuesBuilder;
-}
-
-namespace webui_generator {
-
-using Context = login::ScreenContext;
-
-/**
- * View implementation for the WebUI. Represents a single HTML element derieved
- * from <web-ui-view>.
- */
-class WUG_EXPORT WebUIView : public View {
- public:
- WebUIView(content::WebUI* web_ui, const std::string& id);
- ~WebUIView() override;
-
- // Should be called for |data_source|, where this views will be used.
- // Sets up |data_source| for children of |this| as well, that is why this
- // method only shouldn't be called for non-root views.
- void SetUpDataSource(content::WebUIDataSource* data_source);
-
- // Overridden from View:
- void Init() override;
-
- protected:
- using ResourcesMap =
- base::hash_map<std::string, scoped_refptr<base::RefCountedMemory>>;
-
- content::WebUI* web_ui() { return web_ui_; }
-
- template <typename T, typename... Args>
- void AddCallback(const std::string& name, void (T::*method)(Args...)) {
- base::Callback<void(Args...)> callback =
- base::Bind(method, base::Unretained(static_cast<T*>(this)));
- web_ui_->RegisterMessageCallback(
- name, base::Bind(&::login::CallbackWrapper<Args...>, callback));
- }
-
- // Overridden from View:
- void OnReady() override;
- void OnContextChanged(const base::DictionaryValue& diff) override;
-
- virtual void AddLocalizedValues(::login::LocalizedValuesBuilder* builder) = 0;
- virtual void AddResources(ResourcesMap* resources_map) = 0;
-
- private:
- // Internal implementation of SetUpDataSource.
- void SetUpDataSourceInternal(content::WebUIDataSource* data_source,
- ResourcesMap* resources_map);
-
- // Called when corresponding <web-ui-view> is ready.
- void HandleHTMLReady();
-
- // Called when context is changed on JS side.
- void HandleContextChanged(const base::DictionaryValue* diff);
-
- // Called when both |this| and corresponding <web-ui-view> are ready.
- void Bind();
-
- // Request filter for data source. Filter is needed to answer with a generated
- // HTML and JS code which is not kept in resources.
- bool HandleDataRequest(
- const ResourcesMap* resources,
- const std::string& path,
- const content::WebUIDataSource::GotDataCallback& got_data_callback);
-
- private:
- content::WebUI* web_ui_;
- bool html_ready_;
- bool view_bound_;
- scoped_ptr<Context> pending_context_changes_;
-
- DISALLOW_COPY_AND_ASSIGN(WebUIView);
-};
-
-} // namespace webui_generator
-
-#endif // CHROME_BROWSER_UI_WEBUI_WUG_WEB_UI_VIEW_H_
« no previous file with comments | « components/webui_generator/view_model.cc ('k') | components/webui_generator/web_ui_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698