Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "chrome/browser/ui/webui/local_omnibox_popup/local_omnibox_popup_handle r.h" | |
| 6 | |
| 7 #include "chrome/browser/profiles/profile.h" | |
|
Evan Stade
2012/12/14 01:09:25
can you hold off on adding this class till it actu
Shishir
2012/12/14 03:46:52
Done.
| |
| 8 | |
| 9 LocalOmniboxPopupHandler::LocalOmniboxPopupHandler(Profile* profile) { | |
| 10 } | |
| 11 | |
| 12 LocalOmniboxPopupHandler::~LocalOmniboxPopupHandler() { | |
| 13 } | |
| 14 | |
| 15 void LocalOmniboxPopupHandler::RegisterMessages() { | |
| 16 } | |
| OLD | NEW |