OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | |
Jered
2013/08/16 00:13:23
Why do we need this default implementation? It doe
Anuj
2013/08/22 00:40:45
Allows implementors to pick which ones they really
| |
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/search/instant_service_observer.h" | |
6 | |
7 void InstantServiceObserver::ThemeInfoChanged(const ThemeBackgroundInfo&) {} | |
Jered
2013/08/16 00:13:23
Here and below, put the closing brace on the next
Anuj
2013/08/22 00:40:45
I blame "git cl format". done.
| |
8 | |
9 void InstantServiceObserver::MostVisitedItemsChanged( | |
10 const std::vector<InstantMostVisitedItem>&) {} | |
11 | |
12 void InstantServiceObserver::DefaultSearchProviderChanged() {} | |
13 | |
14 void InstantServiceObserver::GoogleURLUpdated() {} | |
OLD | NEW |