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

Side by Side Diff: chrome/browser/automation/automation_provider_observers.cc

Issue 23257005: Move Feature and Manifest to top-level extensions. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 4 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
« no previous file with comments | « no previous file | chrome/browser/chromeos/app_mode/kiosk_app_data.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 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/automation/automation_provider_observers.h" 5 #include "chrome/browser/automation/automation_provider_observers.h"
6 6
7 #include <deque> 7 #include <deque>
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 #include "chrome/browser/ui/login/login_prompt.h" 63 #include "chrome/browser/ui/login/login_prompt.h"
64 #include "chrome/browser/ui/tabs/tab_strip_model.h" 64 #include "chrome/browser/ui/tabs/tab_strip_model.h"
65 #include "chrome/browser/ui/webui/ntp/app_launcher_handler.h" 65 #include "chrome/browser/ui/webui/ntp/app_launcher_handler.h"
66 #include "chrome/browser/ui/webui/ntp/most_visited_handler.h" 66 #include "chrome/browser/ui/webui/ntp/most_visited_handler.h"
67 #include "chrome/browser/ui/webui/ntp/new_tab_ui.h" 67 #include "chrome/browser/ui/webui/ntp/new_tab_ui.h"
68 #include "chrome/browser/ui/webui/ntp/recently_closed_tabs_handler.h" 68 #include "chrome/browser/ui/webui/ntp/recently_closed_tabs_handler.h"
69 #include "chrome/common/automation_constants.h" 69 #include "chrome/common/automation_constants.h"
70 #include "chrome/common/automation_messages.h" 70 #include "chrome/common/automation_messages.h"
71 #include "chrome/common/content_settings_types.h" 71 #include "chrome/common/content_settings_types.h"
72 #include "chrome/common/extensions/extension.h" 72 #include "chrome/common/extensions/extension.h"
73 #include "chrome/common/extensions/manifest.h"
74 #include "content/public/browser/dom_operation_notification_details.h" 73 #include "content/public/browser/dom_operation_notification_details.h"
75 #include "content/public/browser/navigation_controller.h" 74 #include "content/public/browser/navigation_controller.h"
76 #include "content/public/browser/notification_service.h" 75 #include "content/public/browser/notification_service.h"
77 #include "content/public/browser/render_process_host.h" 76 #include "content/public/browser/render_process_host.h"
78 #include "content/public/browser/render_view_host.h" 77 #include "content/public/browser/render_view_host.h"
79 #include "content/public/browser/web_contents.h" 78 #include "content/public/browser/web_contents.h"
80 #include "content/public/common/process_type.h" 79 #include "content/public/common/process_type.h"
80 #include "extensions/common/manifest.h"
81 #include "extensions/common/view_type.h" 81 #include "extensions/common/view_type.h"
82 #include "ui/gfx/codec/png_codec.h" 82 #include "ui/gfx/codec/png_codec.h"
83 #include "ui/gfx/rect.h" 83 #include "ui/gfx/rect.h"
84 #include "url/gurl.h" 84 #include "url/gurl.h"
85 85
86 using content::BrowserThread; 86 using content::BrowserThread;
87 using content::DomOperationNotificationDetails; 87 using content::DomOperationNotificationDetails;
88 using content::DownloadItem; 88 using content::DownloadItem;
89 using content::DownloadManager; 89 using content::DownloadManager;
90 using content::NavigationController; 90 using content::NavigationController;
(...skipping 2561 matching lines...) Expand 10 before | Expand all | Expand 10 after
2652 if (automation_.get()) { 2652 if (automation_.get()) {
2653 AutomationJSONReply(automation_.get(), reply_message_.release()) 2653 AutomationJSONReply(automation_.get(), reply_message_.release())
2654 .SendSuccess(NULL); 2654 .SendSuccess(NULL);
2655 } 2655 }
2656 delete this; 2656 delete this;
2657 } 2657 }
2658 } else { 2658 } else {
2659 NOTREACHED(); 2659 NOTREACHED();
2660 } 2660 }
2661 } 2661 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chromeos/app_mode/kiosk_app_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698