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

Side by Side Diff: chrome/browser/ui/webui/quota_internals_ui.cc

Issue 9465030: Break two classes defined in json_value_serializer.cc, .h into separate files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/ui/webui/quota_internals_ui.h" 5 #include "chrome/browser/ui/webui/quota_internals_ui.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/json/json_value_serializer.h"
10 #include "chrome/browser/profiles/profile.h" 9 #include "chrome/browser/profiles/profile.h"
11 #include "chrome/browser/ui/webui/chrome_url_data_manager.h" 10 #include "chrome/browser/ui/webui/chrome_url_data_manager.h"
12 #include "chrome/browser/ui/webui/chrome_web_ui_data_source.h" 11 #include "chrome/browser/ui/webui/chrome_web_ui_data_source.h"
13 #include "chrome/browser/ui/webui/quota_internals_handler.h" 12 #include "chrome/browser/ui/webui/quota_internals_handler.h"
14 #include "chrome/common/url_constants.h" 13 #include "chrome/common/url_constants.h"
15 #include "content/public/browser/web_contents.h" 14 #include "content/public/browser/web_contents.h"
16 #include "content/public/browser/web_ui.h" 15 #include "content/public/browser/web_ui.h"
17 #include "grit/quota_internals_resources.h" 16 #include "grit/quota_internals_resources.h"
18 #include "ui/base/l10n/l10n_util.h" 17 #include "ui/base/l10n/l10n_util.h"
19 #include "ui/base/resource/resource_bundle.h" 18 #include "ui/base/resource/resource_bundle.h"
(...skipping 17 matching lines...) Expand all
37 36
38 } // namespace 37 } // namespace
39 38
40 QuotaInternalsUI::QuotaInternalsUI(content::WebUI* web_ui) 39 QuotaInternalsUI::QuotaInternalsUI(content::WebUI* web_ui)
41 : WebUIController(web_ui) { 40 : WebUIController(web_ui) {
42 web_ui->AddMessageHandler(new quota_internals::QuotaInternalsHandler); 41 web_ui->AddMessageHandler(new quota_internals::QuotaInternalsHandler);
43 Profile* profile = Profile::FromWebUI(web_ui); 42 Profile* profile = Profile::FromWebUI(web_ui);
44 profile->GetChromeURLDataManager()->AddDataSource( 43 profile->GetChromeURLDataManager()->AddDataSource(
45 CreateQuotaInternalsHTMLSource()); 44 CreateQuotaInternalsHTMLSource());
46 } 45 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/options/chromeos/system_options_handler.cc ('k') | chrome/common/extensions/extension_file_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698