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

Side by Side Diff: chrome/browser/bookmarks/bookmark_menu_controller.cc

Issue 109043: Move l10n_util to app/ (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 7 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) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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/bookmarks/bookmark_menu_controller.h" 5 #include "chrome/browser/bookmarks/bookmark_menu_controller.h"
6 6
7 #include "app/l10n_util.h"
7 #include "app/resource_bundle.h" 8 #include "app/resource_bundle.h"
8 #include "chrome/browser/bookmarks/bookmark_drag_data.h" 9 #include "chrome/browser/bookmarks/bookmark_drag_data.h"
9 #include "chrome/browser/bookmarks/bookmark_utils.h" 10 #include "chrome/browser/bookmarks/bookmark_utils.h"
10 #include "chrome/browser/metrics/user_metrics.h" 11 #include "chrome/browser/metrics/user_metrics.h"
11 #include "chrome/browser/profile.h" 12 #include "chrome/browser/profile.h"
12 #include "chrome/browser/tab_contents/page_navigator.h" 13 #include "chrome/browser/tab_contents/page_navigator.h"
13 #include "chrome/browser/views/event_utils.h" 14 #include "chrome/browser/views/event_utils.h"
14 #include "chrome/common/os_exchange_data.h" 15 #include "chrome/common/os_exchange_data.h"
15 #include "chrome/common/l10n_util.h"
16 #include "chrome/common/page_transition_types.h" 16 #include "chrome/common/page_transition_types.h"
17 #include "grit/generated_resources.h" 17 #include "grit/generated_resources.h"
18 #include "grit/theme_resources.h" 18 #include "grit/theme_resources.h"
19 19
20 BookmarkMenuController::BookmarkMenuController(Browser* browser, 20 BookmarkMenuController::BookmarkMenuController(Browser* browser,
21 Profile* profile, 21 Profile* profile,
22 PageNavigator* navigator, 22 PageNavigator* navigator,
23 HWND hwnd, 23 HWND hwnd,
24 BookmarkNode* node, 24 BookmarkNode* node,
25 int start_child_index, 25 int start_child_index,
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
248 } 248 }
249 menu_id_to_node_map_[id] = node; 249 menu_id_to_node_map_[id] = node;
250 } 250 }
251 } 251 }
252 252
253 BookmarkMenuController::~BookmarkMenuController() { 253 BookmarkMenuController::~BookmarkMenuController() {
254 profile_->GetBookmarkModel()->RemoveObserver(this); 254 profile_->GetBookmarkModel()->RemoveObserver(this);
255 if (observer_) 255 if (observer_)
256 observer_->BookmarkMenuDeleted(this); 256 observer_->BookmarkMenuDeleted(this);
257 } 257 }
OLDNEW
« no previous file with comments | « chrome/browser/bookmarks/bookmark_html_writer.cc ('k') | chrome/browser/bookmarks/bookmark_model.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698