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

Unified Diff: chrome/browser/app_controller_mac.mm

Issue 8341079: Move cloud_print_class_mac files from content/common to chrome/common/cloud_print. They don't bel... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 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 | « no previous file | chrome/chrome_common.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/app_controller_mac.mm
===================================================================
--- chrome/browser/app_controller_mac.mm (revision 107531)
+++ chrome/browser/app_controller_mac.mm (working copy)
@@ -54,6 +54,7 @@
#include "chrome/common/chrome_notification_types.h"
#include "chrome/common/chrome_paths_internal.h"
#include "chrome/common/chrome_switches.h"
+#include "chrome/common/cloud_print/cloud_print_class_mac.h"
#include "chrome/common/mac/app_mode_common.h"
#include "chrome/common/pref_names.h"
#include "chrome/common/service_messages.h"
@@ -62,7 +63,6 @@
#include "content/browser/download/download_manager.h"
#include "content/browser/tab_contents/tab_contents.h"
#include "content/browser/user_metrics.h"
-#include "content/common/cloud_print_class_mac.h"
#include "content/public/browser/notification_service.h"
#include "content/public/browser/notification_types.h"
#include "grit/chromium_strings.h"
@@ -200,8 +200,8 @@
andEventID:kAEGetURL];
[em setEventHandler:self
andSelector:@selector(submitCloudPrintJob:)
- forEventClass:content::kAECloudPrintClass
- andEventID:content::kAECloudPrintClass];
+ forEventClass:cloud_print::kAECloudPrintClass
+ andEventID:cloud_print::kAECloudPrintClass];
// Install and uninstall handlers for virtual drivers.
[em setEventHandler:self
andSelector:@selector(installCloudPrint:)
@@ -1095,7 +1095,7 @@
- (void)submitCloudPrintJob:(NSAppleEventDescriptor*)event {
// Pull parameter list out of Apple Event.
NSAppleEventDescriptor *paramList =
- [event paramDescriptorForKeyword:content::kAECloudPrintClass];
+ [event paramDescriptorForKeyword:cloud_print::kAECloudPrintClass];
if (paramList != nil) {
// Pull required fields out of parameter list.
« no previous file with comments | « no previous file | chrome/chrome_common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698