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

Unified Diff: chrome/browser/ui/webui/print_preview_handler.h

Issue 7259019: Move base/values.h into the base namespace. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 5 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 | « chrome/browser/ui/webui/options/sync_setup_handler.h ('k') | chrome/browser/ui/webui/sync_internals_ui.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/webui/print_preview_handler.h
===================================================================
--- chrome/browser/ui/webui/print_preview_handler.h (revision 92173)
+++ chrome/browser/ui/webui/print_preview_handler.h (working copy)
@@ -13,9 +13,12 @@
#include "content/browser/webui/web_ui.h"
class FilePath;
+class PrintSystemTaskProxy;
+
+namespace base {
class FundamentalValue;
-class PrintSystemTaskProxy;
class StringValue;
+}
namespace printing {
class PrintBackend;
@@ -54,52 +57,52 @@
TabContents* preview_tab();
// Get the default printer. |args| is unused.
- void HandleGetDefaultPrinter(const ListValue* args);
+ void HandleGetDefaultPrinter(const base::ListValue* args);
// Get the list of printers. |args| is unused.
- void HandleGetPrinters(const ListValue* args);
+ void HandleGetPrinters(const base::ListValue* args);
// Ask the initiator renderer to generate a preview.
// First element of |args| is a job settings JSON string.
- void HandleGetPreview(const ListValue* args);
+ void HandleGetPreview(const base::ListValue* args);
// Get the job settings from Web UI and initiate printing.
// First element of |args| is a job settings JSON string.
- void HandlePrint(const ListValue* args);
+ void HandlePrint(const base::ListValue* args);
// Handles the request to hide the preview tab for printing.
// |args| is unused.
- void HandleHidePreview(const ListValue* args);
+ void HandleHidePreview(const base::ListValue* args);
// Handles the request to cancel the pending print request.
// |args| is unused.
- void HandleCancelPendingPrintRequest(const ListValue* args);
+ void HandleCancelPendingPrintRequest(const base::ListValue* args);
// Get the printer capabilities.
// First element of |args| is the printer name.
- void HandleGetPrinterCapabilities(const ListValue* args);
+ void HandleGetPrinterCapabilities(const base::ListValue* args);
// Ask the initiator renderer to show the native print system dialog.
// |args| is unused.
- void HandleShowSystemDialog(const ListValue* args);
+ void HandleShowSystemDialog(const base::ListValue* args);
// Ask the browser to show the native printer management dialog.
// |args| is unused.
- void HandleManagePrinters(const ListValue* args);
+ void HandleManagePrinters(const base::ListValue* args);
// Ask the browser to close the preview tab.
// |args| is unused.
- void HandleClosePreviewTab(const ListValue* args);
+ void HandleClosePreviewTab(const base::ListValue* args);
// Send the printer capabilities to the Web UI.
// |settings_info| contains printer capabilities information.
- void SendPrinterCapabilities(const DictionaryValue& settings_info);
+ void SendPrinterCapabilities(const base::DictionaryValue& settings_info);
// Send the default printer to the Web UI.
- void SendDefaultPrinter(const StringValue& default_printer);
+ void SendDefaultPrinter(const base::StringValue& default_printer);
// Send the list of printers to the Web UI.
- void SendPrinterList(const ListValue& printers);
+ void SendPrinterList(const base::ListValue& printers);
// Helper function to get the initiator tab for the print preview tab.
TabContents* GetInitiatorTab();
« no previous file with comments | « chrome/browser/ui/webui/options/sync_setup_handler.h ('k') | chrome/browser/ui/webui/sync_internals_ui.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698