This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| use std::collections::HashMap; | |
| use std::fmt; | |
| use std::io; | |
| use std::num::ParseFloatError; | |
| use std::rc::Rc; | |
| /* | |
| Types | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* all this verbosity is required for this to work reliably and predictably | |
| * on both GCC and MSVC | |
| */ | |
| /* because gcc cpp doesn't recursively expand macros, so a single CALLIT | |
| * macro can't be used in all the FE_n macros below | |
| */ | |
| #define FE_CALLITn01(a,b) a b | |
| #define FE_CALLITn02(a,b) a b |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // sets globals: | |
| // __stack, | |
| // __line, | |
| // __file, | |
| // __function, | |
| // __ext, | |
| // __base | |
| // we already have these: | |
| // __filename which gives as an example: /Users/mjr/example.js |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/chrome/browser/ui/bookmarks/recently_used_folders_combo_model.cc b/chrome/browser/ui/bookmarks/recently_used_folders_combo_model.cc | |
| index 88df062..5adbc2e 100644 | |
| --- a/chrome/browser/ui/bookmarks/recently_used_folders_combo_model.cc | |
| +++ b/chrome/browser/ui/bookmarks/recently_used_folders_combo_model.cc | |
| @@ -14,7 +14,7 @@ | |
| namespace { | |
| // Max number of most recently used folders. | |
| -const size_t kMaxMRUFolders = 5; | |
| +const size_t kMaxMRUFolders = 20; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Copyright (c) 2013, Daniel Park | |
| * All rights reserved. | |
| * | |
| * Permission to modify and redistribute this software is granted to | |
| * anyone provided the above copyright notice, this condition and the | |
| * following disclaimer are retained. | |
| * | |
| * This software is provided "as is", without and express or implied | |
| * warranty. In no event shall the author be liable for damages arising |