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

Side by Side Diff: chrome/browser/ui/views/extensions/extension_keybinding_registry.cc

Issue 9618009: Move the .h ExtensionKeybindingRegistry implementation to the Views specific section, since it cont… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 9 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) 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/extensions/extension_keybinding_registry.h" 5 #include "chrome/browser/ui/views/extensions/extension_keybinding_registry.h"
6 6
7 #include "chrome/browser/extensions/extension_browser_event_router.h" 7 #include "chrome/browser/extensions/extension_browser_event_router.h"
8 #include "chrome/browser/extensions/extension_event_router.h" 8 #include "chrome/browser/extensions/extension_event_router.h"
9 #include "chrome/browser/extensions/extension_service.h" 9 #include "chrome/browser/extensions/extension_service.h"
10 #include "chrome/browser/profiles/profile.h" 10 #include "chrome/browser/profiles/profile.h"
11 #include "chrome/browser/ui/browser_list.h" 11 #include "chrome/browser/ui/browser_list.h"
12 #include "chrome/common/chrome_notification_types.h" 12 #include "chrome/common/chrome_notification_types.h"
13 #include "chrome/common/extensions/extension_constants.h" 13 #include "chrome/common/extensions/extension_constants.h"
14 #include "ui/views/focus/focus_manager.h" 14 #include "ui/views/focus/focus_manager.h"
15 15
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 break; 104 break;
105 case chrome::NOTIFICATION_EXTENSION_UNLOADED: 105 case chrome::NOTIFICATION_EXTENSION_UNLOADED:
106 RemoveExtensionKeybinding( 106 RemoveExtensionKeybinding(
107 content::Details<UnloadedExtensionInfo>(details)->extension); 107 content::Details<UnloadedExtensionInfo>(details)->extension);
108 break; 108 break;
109 default: 109 default:
110 NOTREACHED(); 110 NOTREACHED();
111 break; 111 break;
112 } 112 }
113 } 113 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/extensions/extension_keybinding_registry.h ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698